aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/template/recurse2.C
blob: eae411b5ead9d7948ead4c8ed5791ff505e58f63 (plain)
1
2
3
4
5
6
7
8
// PR c++/9335
// We should not see an error about non-constant initialization.

template <int N> struct X {
    static const int value = X<N-1>::value; // { dg-error "instantiation|incomplete" }
  // { dg-message "recursively required" "" { target *-*-* } 5 }
};
template struct X<1000>;