Home | History | Annotate | Download | only in namespace.udecl

Lines Matching refs:Derived

6 //   introduced by a using-declaration into a derived class will be
7 // treated as though they were members of the derived class. In
9 // were a pointer to the derived class rather than to the base
24 struct Derived : Base {
39 Opaque0 a = Derived().test0((int*) 0);
40 Opaque1 b = Derived().test0((const int*) 0);
44 Opaque1 a = Derived().test1((int*) 0);
45 Opaque0 b = Derived().test1((const int*) 0);
49 Opaque0 a = ((Derived*) 0)->test2((int*) 0);
50 Opaque1 b = ((const Derived*) 0)->test2((int*) 0);
54 Opaque1 a = ((Derived*) 0)->test3((int*) 0);
55 Opaque0 b = ((const Derived*) 0)->test3((int*) 0);