Lines Matching full:because
24 …expected-note {{default constructor of 'Deleted1a' is implicitly deleted because variant field 'u'…
35 int &a; // expected-note 4{{because field 'a' of reference type 'int &' would not be initialized}}
39 …int &&b; // expected-note {{default constructor of 'Deleted2b' is implicitly deleted because field…
52 class Deleted3a { const int a; }; // expected-note {{because field 'a' of const-qualified type 'con…
56 class Deleted3b { const DefaultedDefCtor1 a[42]; }; // expected-note {{because field 'a' of const-q…
58 class Deleted3c { const DefaultedDefCtor2 a; }; // expected-note {{because field 'a' of const-quali…
80 …const UserProvidedDefCtor c; // expected-note {{because variant field 'c' has a non-trivial defaul…
89 …union { const int a; }; // expected-note {{because all data members of an anonymous union member a…
101 struct Deleted6a : Deleted2a {}; // expected-note {{because base class 'Deleted2a' has a deleted de…
103 struct Deleted6b : virtual Deleted2a {}; // expected-note {{because base class 'Deleted2a' has a de…
105 struct Deleted6c { Deleted2a a; }; // expected-note {{because field 'a' has a deleted default const…
107 struct Deleted6d { DeletedDefCtor a; }; // expected-note {{because field 'a' has a deleted default …
111 struct Deleted6e { PrivateDefCtor a; }; // expected-note {{because field 'a' has an inaccessible de…
121 struct Deleted7a : DeletedDtor {}; // expected-note {{because base class 'DeletedDtor' has a delete…
123 struct Deleted7b : virtual DeletedDtor {}; // expected-note {{because base class 'DeletedDtor' has …
125 struct Deleted7c { DeletedDtor a; }; // expected-note {{because field 'a' has a deleted destructor}}
127 struct Deleted7d { DeletedDtor a = {}; }; // expected-note {{because field 'a' has a deleted destru…