URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [expr/] [cond6.C] - Rev 717
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