]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.dg/lookup/struct1.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.dg / lookup / struct1.C
diff --git a/gcc/testsuite/g++.dg/lookup/struct1.C b/gcc/testsuite/g++.dg/lookup/struct1.C
deleted file mode 100644 (file)
index c8bc056..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-// Various struct lookup tests.  We didn't used to complain about
-// the definition of C.
-
-struct A;
-typedef struct A B;            // { dg-error "previous declaration" }
-struct B;                      // { dg-error "conflicting types" }
-
-typedef struct { int i; } C;   // { dg-error "previous declaration" }
-struct C;                      // { dg-error "conflicting types" }
-
-struct D;
-typedef struct D D;
-typedef struct D { int i; } D;
-typedef struct D D;