(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
compilable/
b16598.d
struct S
{
    this(int) {}
    ~this() {}
}

int g(S a, S b)
{
    return 1;
}

void main()
{
    true ? g(S(), S(1)) : {}();
}