Lines Matching full:note
41 struct X2 { explicit X2(int); }; // expected-note {{constructor declared here}}
58 D(std::initializer_list<int>) { static_assert(N == 0, ""); } // expected-note 1 {{candidate}}
59 D(std::initializer_list<double>) { static_assert(N == 1, ""); } // expected-note 1 {{candidate}}
125 struct B { // expected-note 2 {{candidate constructor}}
126 B(C, int, C); // expected-note {{candidate constructor not viable: cannot convert initializer list argument to 'objects::C'}}
135 one ov1(B); // expected-note {{not viable: cannot convert initializer list}}
136 two ov1(C); // expected-note {{not viable: cannot convert initializer list}}
150 struct G { // expected-note 6 {{not viable}}
153 G(std::initializer_list<int>, T ...); // expected-note 3 {{not viable}}
156 struct H { // expected-note 6 {{not viable}}
157 explicit H(int, int); // expected-note 3 {{not viable}} expected-note {{declared here}}
158 H(int, void*); // expected-note 3 {{not viable}}
264 struct A { explicit A(int); A(float); }; // expected-note {{declared here}}
267 struct B { explicit B(short); B(long); }; // expected-note 2 {{candidate}}
272 class ArrayRef; // expected-note{{forward declaration}}
275 void foo(const ArrayRef&); // expected-note{{passing argument to parameter here}}