mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
13 lines
118 B
D
13 lines
118 B
D
struct S0
|
|
{
|
|
int x = void;
|
|
}
|
|
struct S1
|
|
{
|
|
S0 x = S0(42);
|
|
}
|
|
void main()
|
|
{
|
|
S1 x;
|
|
assert(x.x.x == 42);
|
|
}
|