]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.dg/other/anon2.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.dg / other / anon2.C
diff --git a/gcc/testsuite/g++.dg/other/anon2.C b/gcc/testsuite/g++.dg/other/anon2.C
deleted file mode 100644 (file)
index 98d8c20..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-// Test that we can have an unnamed struct inside an anonymous union.
-
-struct A
-{
-  union
-  {
-    struct { int i; } foo;
-  };
-};
-
-static union
-{
-  struct { int i; } foo;
-};
-
-int main ()
-{
-  union
-  {
-    struct { int i; } bar;
-  };
-}