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

12 lines
191 B
D

// REQUIRED_ARGS: -preview=dip1000
// https://issues.dlang.org/show_bug.cgi?id=18670
void foo() {
new OVERLAPPED;
}
union OVERLAPPED {
uint OffsetHigh;
uint Pointer;
}