aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/template/const2.C
blob: 5188fe29d10e9081bacd8da0f14aaac84f07bddf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// PR c++/39608
// We were improperly considering dependent members of the current
// instantiation to be non-constant (and therefore invalid template
// non-type arguments).

template <int I>
struct C {};

template <class T>
struct A
{
  static const T x = 1;
  C<A<T>::x> c;			// { dg-bogus "invalid" }
};

A<int> a;