]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.jason/synth9.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.jason / synth9.C
diff --git a/gcc/testsuite/g++.old-deja/g++.jason/synth9.C b/gcc/testsuite/g++.old-deja/g++.jason/synth9.C
deleted file mode 100644 (file)
index 6886feb..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-// PRMS Id: 6837
-// Bug: anonymous union confuses g++.
-// Build don't link:
-
-struct my_key {
-   my_key(const my_key&);
-   my_key(const char* n);
-};
-
-struct my_node {
-   my_node(my_key&);
-   union {
-      long cnt;
-      my_node* next;
-   };
-   my_key a;
-};
-
-extern my_node n;
-my_node a(n);