]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.ns/type2.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.ns / type2.C
diff --git a/gcc/testsuite/g++.old-deja/g++.ns/type2.C b/gcc/testsuite/g++.old-deja/g++.ns/type2.C
deleted file mode 100644 (file)
index d8407b1..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-// Build don't link:
-// 
-// Copyright (C) 2001 Free Software Foundation, Inc.
-// Contributed by Nathan Sidwell 11 April 2001 <nathan@codesourcery.com>
-// Origin:stephen.webb@cybersafe.com 
-
-// Bug 2125. TYPE_DECLS never had their DECL_CONTEXT set, which
-// confused forward references to classes.
-
-typedef void T;
-namespace A {
-  class C;
-  typedef class C C;
-  typedef int T;
-  class C
-  {
-    T i;               // got bogus error, found wrong T
-  };
-}