]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.mike/p10951.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.mike / p10951.C
diff --git a/gcc/testsuite/g++.old-deja/g++.mike/p10951.C b/gcc/testsuite/g++.old-deja/g++.mike/p10951.C
deleted file mode 100644 (file)
index d53775f..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-// Build don't link:
-// prms-id: 10951
-
-inline int m1(const int& a) {
-  return 1;
-}
-
-template <class T>
-class A {
-public:
-  typedef int st;
-
-  static int m2t() {
-    return m1(1);
-  }
-};
-
-A<int>::st i;
-int m3() {
-  return A<int>::m2t();
-}