]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.dg/overload/cond1.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.dg / overload / cond1.C
diff --git a/gcc/testsuite/g++.dg/overload/cond1.C b/gcc/testsuite/g++.dg/overload/cond1.C
deleted file mode 100644 (file)
index 74f0f3c..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-// Test that converting a COND_EXPR to void doesn't result in trying to
-// bitwise copy a class with a nontrivial copy constructor (and thus a
-// compiler abort).
-
-// { dg-options "-O" }
-
-struct A {
-  virtual ~A() { }
-};
-
-A a1, a2;
-inline A& one () { return a1; }
-inline A& two () { return a2; }
-
-inline void f (int i)
-{
-  i ? a1 : a2;
-  i ? one() : two();
-}
-
-int main ()
-{
-  f (1);
-}