Steven Schveighoffer wrote: > "Walter Bright" wrote >> Ary Borenszweig wrote: >>> So both syntax are possible? >>> >>> S(...) >> Creates a struct instance >> >>> new S(...) >> Creates a struct instance and returns a pointer to it. > > On the heap I assume? (hope) S() creates it on the stack, new S() on the heap.