aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/g++.dg/cpp0x/regress/template-const1.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8.1/gcc/testsuite/g++.dg/cpp0x/regress/template-const1.C')
-rw-r--r--gcc-4.8.1/gcc/testsuite/g++.dg/cpp0x/regress/template-const1.C9
1 files changed, 0 insertions, 9 deletions
diff --git a/gcc-4.8.1/gcc/testsuite/g++.dg/cpp0x/regress/template-const1.C b/gcc-4.8.1/gcc/testsuite/g++.dg/cpp0x/regress/template-const1.C
deleted file mode 100644
index 32db1f831..000000000
--- a/gcc-4.8.1/gcc/testsuite/g++.dg/cpp0x/regress/template-const1.C
+++ /dev/null
@@ -1,9 +0,0 @@
-// PR c++/47897
-// { dg-options -std=c++0x }
-
-template < typename T, T N >
-struct S
-{
- static const T value = N;
- typedef S< T, value + 1 > next;
-};