Home | History | Annotate | Download | only in SemaCXX

Lines Matching full:anonymous

12     union { // expected-warning{{anonymous types declared in an anonymous union are an extension}}
20 struct { // expected-warning{{anonymous structs are a GNU extension}}
27 mutable union { // expected-error{{anonymous union at class scope must not have a storage specifier}}
67 int x; // expected-error{{member of anonymous union redeclares 'x'}}
77 union { // expected-error{{anonymous unions at namespace or global scope must be declared 'static'}}
103 struct X { }; // expected-error {{types cannot be declared in an anonymous union}}
104 struct { int x; int y; } y; // expected-warning{{anonymous types declared in an anonymous union are an extension}}
106 void f(); // expected-error{{functions cannot be declared in an anonymous union}}
107 private: int x1; // expected-error{{anonymous union cannot contain a private data member}}
108 protected: float x2; // expected-error{{anonymous union cannot contain a protected data member}}
128 struct { // expected-warning{{anonymous structs are a GNU extension}}
131 union { // expected-warning{{anonymous types declared in an anonymous struct are an extension}}
139 struct { // expected-warning{{anonymous structs are a GNU extension}} expected-warning{{anonymous types declared in an anonymous union are an extension}}
189 const union { // expected-warning{{anonymous union cannot be 'const'}}
190 struct { // expected-warning{{anonymous structs are a GNU extension}} expected-warning{{declared in an anonymous union}}