Lines Matching full:declared
12 union { // expected-warning{{anonymous types declared in an anonymous union are an extension}}
42 void X::test_unqual_references_const() const { // expected-note 2{{member function 'X::test_unqual_references_const' is declared const here}}
49 // expected-note@-1 2{{variable 'xc' declared const here}}
78 union { // expected-error{{anonymous unions at namespace or global scope must be declared 'static'}}
108 struct X { }; // expected-error {{types cannot be declared in an anonymous union}}
109 struct { int x; int y; } y; // expected-warning{{anonymous types declared in an anonymous union are an extension}}
111 void f(); // expected-error{{functions cannot be declared in an anonymous union}}
134 int s0; // expected-note {{declared private here}}
135 double s1; // expected-note {{declared private here}}
136 union { // expected-warning{{anonymous types declared in an anonymous struct are an extension}}
137 int su0; // expected-note {{declared private here}}
138 double su1; // expected-note {{declared private here}}
142 int u0; // expected-note {{declared private here}}
143 double u1; // expected-note {{declared private here}}
144 struct { // expected-warning{{anonymous structs are a GNU extension}} expected-warning{{anonymous types declared in an anonymous union are an extension}}
145 int us0; // expected-note {{declared private here}}
146 double us1; // expected-note {{declared private here}}
195 struct { // expected-warning{{anonymous structs are a GNU extension}} expected-warning{{declared in an anonymous union}}
207 struct A { union { int x; float y; }; }; // expected-note {{member is declared here}}