diff options
Diffstat (limited to 'gcc/testsuite/g++.dg/template/recurse2.C')
-rw-r--r-- | gcc/testsuite/g++.dg/template/recurse2.C | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gcc/testsuite/g++.dg/template/recurse2.C b/gcc/testsuite/g++.dg/template/recurse2.C new file mode 100644 index 000000000..b9767dfb6 --- /dev/null +++ b/gcc/testsuite/g++.dg/template/recurse2.C @@ -0,0 +1,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 instantiated" "" { target *-*-* } 5 } +}; +template struct X<1000>; |