]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.ext/anon1.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.ext / anon1.C
diff --git a/gcc/testsuite/g++.old-deja/g++.ext/anon1.C b/gcc/testsuite/g++.old-deja/g++.ext/anon1.C
deleted file mode 100644 (file)
index 8ec3580..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-// Special g++ Options:
-
-union U {
-  struct { int i; int j; };
-  int a[2];
-};
-
-int main ()
-{
-  U u;
-  u.i = 42;
-  u.a[1] = 24;
-  return u.j != 24 || u.a[0] != 42;
-}