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

15 lines
129 B
D

struct S
{
this(int) {}
~this() {}
}
int g(S a, S b)
{
return 1;
}
void main()
{
true ? g(S(), S(1)) : {}();
}