Home | History | Annotate | Download | only in SemaCXX

Lines Matching refs:Struct

8   struct type_info;
10 template<typename T> struct initializer_list {
45 template<typename T> struct S {};
55 struct Ctor {
59 struct InitListCtor {
79 struct { int a; const int &r; } rr = { 0, {0} }; // expected-warning {{reference initialized from initializer list is incompatible with C++98}}
82 struct DelayedDefaultArgumentParseInitList {
96 struct Defaulted {
101 struct RefQualifier {
117 struct Agg { int a, b; } const &agg = { 1, 2 }; // expected-warning {{reference initialized from initializer list is incompatible with C++98}}
120 struct InClassInit {
124 struct OverrideControlBase {
128 struct OverrideControl final : OverrideControlBase { // expected-warning {{'final' keyword is incompatible with C++98}}
153 struct InhCtorBase {
156 struct InhCtorDerived : InhCtorBase {
160 struct FriendMember {
165 struct DelegCtor {
174 struct S {};
177 struct {} obj_of_unnamed_type; // expected-note {{here}}
182 template<int*p> struct S {};
188 template<typename T> struct S {}; // expected-note {{here}}
190 template<> struct TemplateSpecOutOfScopeNs::S<char> {}; // expected-warning {{class template specialization of 'S' outside namespace 'TemplateSpecOutOfScopeNs' is incompatible with C++98}}
192 struct Typename {
193 template<typename T> struct Inner {};
198 struct TrivialButNonPOD {
208 struct HasExplicitConversion {
212 struct Struct {};
214 struct BadFriends {
217 friend Struct; // expected-warning {{befriending 'Struct' without 'struct' keyword is incompatible with C++98}}
223 struct ImPrivate {};
232 struct FriendRedefinition {
239 struct Private {
244 struct NoViable {
248 struct Ambiguous {
253 struct Deleted {
264 struct NonTrivCtor {
267 struct NonTrivCopy {
270 struct NonTrivDtor {
278 struct Wrap {
279 struct {
280 NonTrivCtor ntc; // expected-warning {{anonymous struct member 'ntc' with a non-trivial constructor is incompatible with C++98}}
281 NonTrivCopy ntcp; // expected-warning {{anonymous struct member 'ntcp' with a non-trivial copy constructor is incompatible with C++98}}
282 NonTrivDtor ntd; // expected-warning {{anonymous struct member 'ntd' with a non-trivial destructor is incompatible with C++98}}
316 struct S {
332 template<typename T, T v> struct S {};
340 struct A {};
341 template<int*> struct X {};
342 template<int A::*> struct Y {};
348 struct basic_iterator {
359 struct a {
364 struct b {
375 struct X { // expected-note {{because type 'rdar11736429::X' has no default constructor}}
427 struct B { template<typename T> static T v; };