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

Lines Matching refs:B1

8 struct B1 {
9 B1(int);
12 using B1::B1; // expected-error {{using declaration cannot refer to class member}}
18 struct I1 : B1 {
19 using B1::B1; // expected-note {{previous using declaration}}
20 using B1::B1; // expected-error {{redeclaration of using decl}}
30 using B1::B1; // expected-error {{'B1' is not a direct base of 'D1', cannot inherit constructors}}
64 G<B1> g(123);