aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/g++.dg/cpp0x/auto36.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8.1/gcc/testsuite/g++.dg/cpp0x/auto36.C')
-rw-r--r--gcc-4.8.1/gcc/testsuite/g++.dg/cpp0x/auto36.C18
1 files changed, 0 insertions, 18 deletions
diff --git a/gcc-4.8.1/gcc/testsuite/g++.dg/cpp0x/auto36.C b/gcc-4.8.1/gcc/testsuite/g++.dg/cpp0x/auto36.C
deleted file mode 100644
index c3530401b..000000000
--- a/gcc-4.8.1/gcc/testsuite/g++.dg/cpp0x/auto36.C
+++ /dev/null
@@ -1,18 +0,0 @@
-// PR c++/54903
-// { dg-options -std=c++11 }
-
-template<int N, int D>
-struct Modulus
-{
- static auto const value = N % D;
-};
-
-template<int N>
-struct Angle
-{
- static auto const value = Modulus<N, 360>::value; // ERROR
- //static int const value = Modulus<N, 360>::value; // OK
- //static auto const value = N % 360; // OK
-
- typedef Angle<value> type;
-};