]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.other/lookup24.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / lookup24.C
diff --git a/gcc/testsuite/g++.old-deja/g++.other/lookup24.C b/gcc/testsuite/g++.old-deja/g++.other/lookup24.C
deleted file mode 100644 (file)
index c8988e2..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-// Build don't link:
-// 
-// Copyright (C) 2003 Free Software Foundation, Inc.
-// Contributed by Raymond <raymond@magma.magma-da.com>.
-// 
-// PR c++/47  The parser failed to resolve 'B' in the return type of
-// A::C::D::foo.
-
-class A {
-public:
-  class B;
-  class C;
-};
-
-class A::B {
-};
-
-class A::C {
-  class D;
-};
-
-class A::C::D {
-public:
-  B* foo();
-};