]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.dg/template/crash1.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.dg / template / crash1.C
diff --git a/gcc/testsuite/g++.dg/template/crash1.C b/gcc/testsuite/g++.dg/template/crash1.C
deleted file mode 100644 (file)
index 27e8964..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-// { dg-do compile }
-
-// Copyright (C) 2001 Free Software Foundation, Inc.
-// Contributed by Nathan Sidwell 29 Dec 2001 <nathan@nathan@codesourcery.com>
-
-// PR 5125. ICE
-
-class S
-{
-  public:
-  template <class I> void Foo(int (*f)(S& o) ); // { dg-error "candidate" "" }
-};
-
-template <class I>
-void S::Foo(int (*f)(TYPO&o) )
-{ // { dg-error "template definition of non-template|prototype" "" }
-}