mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 02:43:14 +01:00
22 lines
184 B
D
22 lines
184 B
D
module bug44;
|
|
|
|
pragma(LLVM_internal, "notypeinfo")
|
|
struct rgb
|
|
{
|
|
long l;
|
|
}
|
|
|
|
void foo()
|
|
{
|
|
}
|
|
|
|
rgb test() {
|
|
scope(exit) foo();
|
|
return rgb();
|
|
}
|
|
|
|
void main()
|
|
{
|
|
rgb r = test();
|
|
}
|