aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/template/error6.C
blob: 7560dcfb51fa6eb38103e5ee321d1ee52c812283 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
template<int n>
struct tento {
  enum {value = 10*tento<n-1>::value};
};

struct tento<0> { // { dg-error "" }
   enum {value=1};
};

int main() {
  if (tento<4>::value != 10000) return -1;
}