blob: fbe26ea0ab87526e724aa4e128ab228c8303f744 [file] [log] [blame]
struct A {
struct {
int x = 1;
};
} a;
struct B {
// Anonymous struct inherits another struct.
struct : public A {
int z = 3;
};
} b;
int main(int argc, char **argv) { return 0; }