URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [g++.dg/] [expr/] [cond6.C] - Rev 154
Go to most recent revision | Compare with Previous | Blame | View Log
// { dg-do "run" }
extern "C" void abort ();
struct B {
B() {}
B(const B& b) { abort (); }
};
struct D : public B {
D() {}
D(const D& d) : B() {}
};
D d;
B b;
D f() {
return d;
}
int main () {
b = (true ? f() : b);
}
Go to most recent revision | Compare with Previous | Blame | View Log