lindquist@27: module bug2; lindquist@27: struct Vec { Vec barf() { return Vec(); } } lindquist@27: class test { this(Vec whee) { } } lindquist@27: void main() { Vec whee; new test(whee.barf()); }