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

16 lines
133 B
D

// REQUIRED_ARGS: -O
void t()
{
auto a = A(false ? B().p : null);
}
struct A
{
void* p;
}
struct B
{
void* p;
~this() {}
}