What if I write return statement in constructor? Is it standard conformant?
struct A { A() { return; } };
The above code compiles fi
Perhaps the notion of having typeless return in constructors is to control the termination of constructor function.
struct A { // more definitions A() { if( !goodToGoOn) return; // the rest of the stuffs go here } };