aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/pr58674.C
blob: fe97c6de970490626708f218f8e93403d56dad11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// PR c++/58674
// { dg-do compile { target c++11 } }

template<int> struct A {};

template<int N> using B = A<N>;

template<typename T> struct C
{
  B<T::i> b;  // { dg-error "not usable" }
};

struct X
{
  static const int i;
};

C<X> c;