blob: 67cd7f5e8dd58d8257d6fcfa213439f13f1022a5 [file] [log] [blame]
struct S
{
this(int) {}
~this() {}
}
int g(S a, S b)
{
return 1;
}
void main()
{
true ? g(S(), S(1)) : {}();
}