aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/template/using19.C
blob: dc89f92ef0e8b97e34143b14bebf4fe9ab129570 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// PR c++/23211
// { dg-do compile }

struct A { int x; };

template <class T>
struct B: A
{
  using T::x;
};

B<A> b;