diff options
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.robertl/eb84.C')
-rw-r--r-- | gcc/testsuite/g++.old-deja/g++.robertl/eb84.C | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.robertl/eb84.C b/gcc/testsuite/g++.old-deja/g++.robertl/eb84.C new file mode 100644 index 000000000..0d09059b3 --- /dev/null +++ b/gcc/testsuite/g++.old-deja/g++.robertl/eb84.C @@ -0,0 +1,18 @@ +// { dg-do run } +// Error: Internal Compiler error on GCC 2.7.2.3 & EGCS 1998/05/23 snapshot. + +class A { +public: + enum { ONE, TWO, THREE }; +}; + +template <const unsigned c1,const unsigned c2,const unsigned c3> +void f() { + +} + +int +main() +{ + f<A::ONE,A::TWO,A::THREE>(); +} |