mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
24 lines
246 B
C
24 lines
246 B
C
// https://issues.dlang.org/show_bug.cgi?id=22698
|
|
|
|
struct S
|
|
{
|
|
struct T { int x; };
|
|
};
|
|
|
|
struct T t;
|
|
|
|
/*******/
|
|
|
|
struct Bar {
|
|
struct Foo {
|
|
int x;
|
|
} f;
|
|
};
|
|
|
|
struct Foo f = {3};
|
|
|
|
/*******/
|
|
|
|
struct Amy { int x; } *p;
|
|
|
|
struct Amy b;
|