comparison test/bug2.d @ 27:92408a3a2bac trunk

[svn r31] * Fixed returning through hidden pointer was unable to report back the return value * Fixed removed some litter instructions sometimes produced by constructor calls
author lindquist
date Thu, 04 Oct 2007 11:39:53 +0200
parents
children
comparison
equal deleted inserted replaced
26:99737f94abfb 27:92408a3a2bac
1 module bug2;
2 struct Vec { Vec barf() { return Vec(); } }
3 class test { this(Vec whee) { } }
4 void main() { Vec whee; new test(whee.barf()); }