]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.ns/template18.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.ns / template18.C
diff --git a/gcc/testsuite/g++.old-deja/g++.ns/template18.C b/gcc/testsuite/g++.old-deja/g++.ns/template18.C
deleted file mode 100644 (file)
index 4b3f720..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-// Build don't run:
-// Origin: Andrey Slepuhin <pooh@msu.ru>
-
-namespace A
-{
-  int j;
-
-  template <typename val_t>
-  struct X
-  {
-    inline X ()
-    {
-      extern int j;
-      i = j;
-    }
-
-    int i;
-  };
-}
-
-int main ()
-{
-  A::X<int> x;
-}