blob: 5eaafec342e42cc663d8dce02dc98a8bc66994cd [file] [log] [blame]
// REQUIRED_ARGS: -O
void t()
{
auto a = A(false ? B().p : null);
}
struct A
{
void* p;
}
struct B
{
void* p;
~this() {}
}