struct MyStruct {
// stuff
}
void main(string[] args) {
MyStruct s1 = void;
}Could anyone describe me what this initialization does, please? When do I need to use the void initialization?
ref2401 via Digitalmars-d-learn Tue, 31 Mar 2015 08:16:53 -0700
struct MyStruct {
// stuff
}
void main(string[] args) {
MyStruct s1 = void;
}Could anyone describe me what this initialization does, please? When do I need to use the void initialization?