Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.dg / expr / cond6.C
blob9308c17954121e9ee9241690983cad4099edaca9
1 // { dg-do "run" }
3 extern "C" void abort ();
5 struct B {
6   B() {}
7   B(const B& b) { abort (); }
8 };
10 struct D : public B {
11   D() {}
12   D(const D& d) : B() {}
15 D d;
16 B b;
18 D f() {
19   return d;
22 int main () {
23   b = (true ? f() : b);