]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.pt/explicit55.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / explicit55.C
diff --git a/gcc/testsuite/g++.old-deja/g++.pt/explicit55.C b/gcc/testsuite/g++.old-deja/g++.pt/explicit55.C
deleted file mode 100644 (file)
index c9d3125..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-template <class T> T* create ()
-{
-  return new T;
-}
-
-template <class T> T* create2()
-{
-  return create<T>();
-}
-
-int main()
-{
-  int *p = create2<int>();
-}