Lines Matching full:note
10 …virtual void foo() { abort(); } // expected-note 4 {{because type 'Virtual' has a virtual member f… in foo()
13 class VirtualBase : virtual Okay { // expected-note 4 {{because type 'VirtualBase' has a virtual ba…
17 …Ctor() { abort(); } // expected-note 2{{because type 'Ctor' has a user-provided default constructo… in Ctor()
20 …Ctor2(); // expected-note {{because type 'Ctor2' has a user-provided default constructor}} expecte…
22 class CtorTmpl { // expected-note {{because type 'CtorTmpl' has no default constructor}}
23 …template<typename T> CtorTmpl(); // expected-note {{implicit default constructor suppressed by use…
26 class CopyCtor { // expected-note 2{{because no constructor can be used to copy an object of type '…
30 class CopyAssign { // expected-note 2 {{because no assignment operator can be used to copy an objec…
35 …~Dtor() { abort(); } // expected-note 2 {{because type 'Dtor' has a user-provided destructor}} exp… in ~Dtor()
52 …Virtual v; // expected-note {{because the function selected to copy field of type 'Virtual' is not…
55 …VirtualBase vbase; // expected-note {{because the function selected to copy field of type 'Virtual…
58 …Ctor ctor; // expected-note {{because field of type 'Ctor' has a user-provided default constructor…
61 …Ctor2 ctor2; // expected-note {{because field of type 'Ctor2' has a user-provided default construc…
63 struct { // expected-note {{no constructor can be used to copy an object of type 'const}}
66 struct { // expected-note {{no assignment operator can be used to copy an object of type 'const}}
70 Dtor dtor; // expected-note {{because field of type 'Dtor' has a user-provided destructor}}
78 …struct s1 : Virtual { // expected-note {{because the function selected to copy base class of type …
80 …struct s2 : VirtualBase { // expected-note {{because the function selected to copy base class of t…
82 …struct s3 : Ctor { // expected-note {{because base class of type 'Ctor' has a user-provided defaul…
84 …struct s3a : Ctor2 { // expected-note {{because base class of type 'Ctor2' has a user-provided def…
86 …struct s4 : CopyCtor { // expected-note {{because no constructor can be used to copy an object of …
88 …struct s5 : CopyAssign { // expected-note {{because no assignment operator can be used to copy an …
90 …struct s6 : Dtor { // expected-note {{because base class of type 'Dtor' has a user-provided destru…
95 …s8(...) = delete; // expected-note {{because it is a variadic function}} expected-warning {{C++11}}
116 union { // expected-note 6 {{in instantiation of member class}}
126 Either<int,Virtual> virt(0); // expected-note {{in instantiation of template}} in fred()
127 Either<int,VirtualBase> vbase(0); // expected-note {{in instantiation of template}} in fred()
128 Either<int,Ctor> ctor(0); // expected-note {{in instantiation of template}} in fred()
129 Either<int,CopyCtor> copyctor(0); // expected-note {{in instantiation of template}} in fred()
130 Either<int,CopyAssign> copyassign(0); // expected-note {{in instantiation of template}} in fred()
131 Either<int,Dtor> dtor(0); // expected-note {{in instantiation of template}} in fred()