]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.eh/crash2.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.eh / crash2.C
diff --git a/gcc/testsuite/g++.old-deja/g++.eh/crash2.C b/gcc/testsuite/g++.old-deja/g++.eh/crash2.C
deleted file mode 100644 (file)
index 463df9d..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-// Build don't link:
-// Origin: Thomas Kunert <kunert@physik.tu-dresden.de>
-// Special g++ Options: -O
-
-struct C {
-    ~C();
-};    
-
-struct R {
-    bool empty() const;
-    C m_;
-};
-
-struct R1 {
-    R1( const R& a );
-  ~R1 ();
-    C m_;
-};
-
-R1 get_empty();
-
-R1::R1( const R& a ) :
-    m_( a.empty() ? get_empty().m_ : C() )
-{}
-
-void qnorm( const R & r)
-{ R1 n( r ); }