]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.gb/scope04.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.gb / scope04.C
diff --git a/gcc/testsuite/g++.old-deja/g++.gb/scope04.C b/gcc/testsuite/g++.old-deja/g++.gb/scope04.C
deleted file mode 100644 (file)
index f63775b..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-// Build don't link: 
-// GROUPS passed gb scope
-struct a {
-  struct c {
-    struct d {
-      static int foo (int);
-    };
-  };
-
-  struct b {
-    int foo (int x) { return c::d::foo (x); }
-  };
-};
-
-int a::c::d::foo (int) { return 0; }