OSDN Git Service

2011-02-20 Paolo Carlini <paolo.carlini@oracle.com>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / using11.C
1 struct X {
2   void f();
3 };
4
5 template <typename T> 
6 struct S : public T {
7   using X::f;
8 };