mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
16 lines
133 B
D
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() {}
|
|
}
|