]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.other/lookup20.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / lookup20.C
diff --git a/gcc/testsuite/g++.old-deja/g++.other/lookup20.C b/gcc/testsuite/g++.old-deja/g++.other/lookup20.C
deleted file mode 100644 (file)
index 930c9ab..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-// Bug: typename_sub2 returned the type, so we tried to look up "A" in B.
-// Build don't link:
-
-struct A { struct A1 { }; };
-
-struct B {
-  typedef A Q;
-};
-
-struct C: public B::Q::A1 { };