aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/inherit/using7.C
blob: de177c91d217e94049f1f67cca951f25aa87b930 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// PR c++/51889

struct A {
  void f();
};

template <class T>
struct B: A
{
  using A::f;
  void f();
};