]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.other/eh.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / eh.C
diff --git a/gcc/testsuite/g++.old-deja/g++.other/eh.C b/gcc/testsuite/g++.old-deja/g++.other/eh.C
deleted file mode 100644 (file)
index 90294fa..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-// Build don't link:
-
-class foo {
-public:
-    ~foo();
-    foo &operator=(const foo &);
-    foo        e() const;
-};
-class bar {
-public:
-    foo        d() const;
-};
-struct x {
-    foo a;
-    bar* b;
-};
-void baz(x *f, int ic)
-{
-    f->a = ic ? f->b->d().e() : f->b->d();
-}