mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 10:53:14 +01:00
21 lines
148 B
D
21 lines
148 B
D
module bug44;
|
|
|
|
struct rgb
|
|
{
|
|
long l;
|
|
}
|
|
|
|
void foo()
|
|
{
|
|
}
|
|
|
|
rgb test() {
|
|
scope(exit) foo();
|
|
return rgb();
|
|
}
|
|
|
|
void main()
|
|
{
|
|
rgb r = test();
|
|
}
|