summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/template/crash17.C
blob: 9fa826b999d6717ff0f64c2fe3e6b7d328982559 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
template <int I> 
struct A {
};

template <typename T>
struct B {
  typedef typename T::type type;
  static const type j = T::j;

  A<j> b;
};

struct C {
  typedef int type;
  static const int j = 3;
};

int i = B<C>::j;