Home | History | Annotate | Download | only in PCH

Lines Matching full:base

18 struct Base {
19 Base(int) {}
22 Base(T) {}
25 struct Test : Base {
26 using Base::Base;
30 struct Test2 : Base {
31 using Base::Base;
46 Test3<Base> test3a(42);
47 Test3<Base> test3b(nullptr);
58 Test3<Base> retest3a(42);
59 Test3<Base> retest3b(nullptr);