URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [g++.dg/] [init/] [synth2.C] - Rev 826
Compare with Previous | Blame | View Log
// PR c++/34180
struct G {
G(); // { dg-message "" "candidate" }
G(G&); // { dg-message "" "candidate" }
};
class A
{ // { dg-error "no match" }
const G g;
};
int main()
{
A a;
A b = a; // { dg-message "required here" }
}