annotate tests/mini/bug2.d @ 341:1bb99290e03a trunk

[svn r362] Started merging the old 'test' dir as well as the newer 'tangotests' dir into 'tests/mini' and 'tests/minicomplex'.
author lindquist
date Sun, 13 Jul 2008 02:51:19 +0200
parents test/bug2.d@92408a3a2bac
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
27
92408a3a2bac [svn r31] * Fixed returning through hidden pointer was unable to report back the return value
lindquist
parents:
diff changeset
1 module bug2;
92408a3a2bac [svn r31] * Fixed returning through hidden pointer was unable to report back the return value
lindquist
parents:
diff changeset
2 struct Vec { Vec barf() { return Vec(); } }
92408a3a2bac [svn r31] * Fixed returning through hidden pointer was unable to report back the return value
lindquist
parents:
diff changeset
3 class test { this(Vec whee) { } }
92408a3a2bac [svn r31] * Fixed returning through hidden pointer was unable to report back the return value
lindquist
parents:
diff changeset
4 void main() { Vec whee; new test(whee.barf()); }