]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.dg/template/explicit-instantiation.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.dg / template / explicit-instantiation.C
diff --git a/gcc/testsuite/g++.dg/template/explicit-instantiation.C b/gcc/testsuite/g++.dg/template/explicit-instantiation.C
deleted file mode 100644 (file)
index 67e44c4..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-// Contributed by Gabriel Dos Reis <gdr@codesourcery.com>
-// Origin: Jens.Maurer@gmx.net
-// { dg-do compile }
-
-// Fixed: PR 3381
-
-namespace N
-{
-  template<class T>
-  class A { };
-}
-
-template class ::N::A<int>;
-
-
-