dmd/compiler/test/runnable/test8182.d
2022-07-09 18:53:07 +02:00

16 lines
119 B
D

struct S
{
~this()
{
assert(false);
}
}
void lazily(lazy S)
{
}
void main()
{
lazily(S());
}