mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
19 lines
295 B
D
19 lines
295 B
D
// https://issues.dlang.org/show_bug.cgi?id=22624
|
|
// EXTRA_FILES: imports/imp22624.c
|
|
|
|
import core.stdc.stdio;
|
|
import imports.imp22624;
|
|
|
|
struct S
|
|
{
|
|
B b;
|
|
ulong y = 0x1234_0000_5678;
|
|
}
|
|
|
|
int main()
|
|
{
|
|
S s;
|
|
//printf("%llx\n", s.y);
|
|
assert(s.y == 0x1234_0000_5678);
|
|
return 0;
|
|
}
|