mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 10:53:14 +01:00
5 lines
140 B
D
5 lines
140 B
D
module bug2;
|
|
struct Vec { Vec barf() { return Vec(); } }
|
|
class test { this(Vec whee) { } }
|
|
void main() { Vec whee; new test(whee.barf()); }
|