Lines Matching full:note
3 struct B1 { // expected-note 2{{candidate}}
4 B1(int); // expected-note {{candidate}}
7 struct B2 { // expected-note 2{{candidate}}
8 B2(int); // expected-note {{candidate}}
11 struct D1 : B1, B2 { // expected-note 2{{candidate}}
12 using B1::B1; // expected-note 3{{inherited here}}
13 using B2::B2; // expected-note 3{{inherited here}}
31 struct A { // expected-note 4{{candidate}}
32 A(); // expected-note {{candidate}}
34 A(C &&); // expected-note {{candidate}}
35 C &operator=(C&&); // expected-note {{candidate}}
37 A(D &&); // expected-note {{candidate}}
38 D &operator=(D&&); // expected-note {{candidate}}
41 struct B { // expected-note 4{{candidate}}
42 B(); // expected-note {{candidate}}
44 B(C &&); // expected-note {{candidate}}
45 C &operator=(C&&); // expected-note {{candidate}}
47 B(D &&); // expected-note {{candidate}}
48 D &operator=(D&&); // expected-note {{candidate}}
58 using A::A; // expected-note 5{{inherited here}}
60 using B::B; // expected-note 5{{inherited here}}
64 D(const D&); // expected-note {{candidate}}
65 D &operator=(const D&); // expected-note {{candidate}}