]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.other/eh1.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / eh1.C
diff --git a/gcc/testsuite/g++.old-deja/g++.other/eh1.C b/gcc/testsuite/g++.old-deja/g++.other/eh1.C
deleted file mode 100644 (file)
index 515a77d..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-// Build don't link:
-
-class C2 {
-public:
-  ~C2();
-  C2 a() const;
-};
-class C3 {
-public:
-  C3(const C2 &c);
-};
-class C4
-{
-public:
-  C3 *foo(bool b, const C2 &c);
-  C2 d() const;
-};
-C3 *C4::foo(bool b, const C2 &c)
-{
-  return new C3(b ? d().a() : c);
-}