]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.pt/instantiate7.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / instantiate7.C
diff --git a/gcc/testsuite/g++.old-deja/g++.pt/instantiate7.C b/gcc/testsuite/g++.old-deja/g++.pt/instantiate7.C
deleted file mode 100644 (file)
index a142dfa..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-// Build don't link:
-
-// Copyright (C) 2000 Free Software Foundation
-// Contributed by Nathan Sidwell 6 July 2000 <nathan@codesourcery.com>
-
-template <class T>
-void Wibble (void (*fn) (), T *const __restrict__ &p2)
-{}
-template<class T1, class T2>
-void Wibble (T1 *const __restrict__ &p1, T2 *const __restrict__ &p2)
-{}
-
-void Baz ();
-
-void Foo (void const *ptr)
-{
-  Wibble (&Baz, ptr);
-}