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

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;