Home | History | Annotate | Download | only in class.inhctor

Lines Matching defs:B1

4 struct B1 {
5 B1(int); // expected-note {{previous constructor}} expected-note {{conflicting constructor}}
10 struct D1 : B1, B2 {
11 using B1::B1; // expected-note {{inherited here}}
14 struct D2 : B1, B2 {
15 using B1::B1;
23 template<typename T> struct B4 : B3<T>, B1 {
26 using B1::B1; // expected-error {{already inherited}}