(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
compilable/
ice20415.d
// REQUIRED_ARGS: -O
void t()
{
  auto a = A(false ? B().p : null);
}

struct A
{
  void* p;
}

struct B
{
  void* p;
  ~this() {}
}