Merge from mainline (167278:168000).
[official-gcc/graphite-test-results.git] / gcc / testsuite / g++.dg / template / using14.C
blobebb4e090a37ca09b9aff2d186d852a306a1c08d2
1 // PR c++/26102
3 template <class T> struct B1 { int i(); };
5 struct B2 { int i(); };
7 template <class T> struct C : public B1<T>, public B2
9   using B2::i;
10   void f()
11   {
12     i();                        // should be accepted
13     i.i();                      // { dg-error "member" }
14   }
17 int main()
19   C<int> c;
20   c.f();                        // { dg-message "instantiated" }