]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.jason/anon3.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.jason / anon3.C
diff --git a/gcc/testsuite/g++.old-deja/g++.jason/anon3.C b/gcc/testsuite/g++.old-deja/g++.jason/anon3.C
deleted file mode 100644 (file)
index 96353fc..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-// Bug: g++ dies.
-// Build don't link:
-
-class cl {
-public:
-  cl();
-  void set(void *, char *, int);
-private:
-  union {
-    float vf;
-    struct ff { // ERROR - nested class in anonymous union
-      void *ptr;
-      char *name;
-      int sz;
-    } *vff;
-  };
-};
-
-void cl::set(void *p, char *n, int sz)
-{
-    vff = new ff; // This procude an internal compiler error.
-    vff->ptr = p;
-    vff->name = n;
-    vff->sz = sz;
-}