]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.pt/static1.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / static1.C
diff --git a/gcc/testsuite/g++.old-deja/g++.pt/static1.C b/gcc/testsuite/g++.old-deja/g++.pt/static1.C
deleted file mode 100644 (file)
index 67e2363..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-extern "C" void abort();
-
-template <class T> 
-class A
-{
- public:
-  static int foo(int);
-};
-
-template <>
-int A<int>::foo(int i)
-{
-  return i;
-}
-
-
-int main()
-{
-  if (A<int>::foo(22) != 22)
-    abort();
-}