URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [overload/] [copy1.C] - Rev 764
Go to most recent revision | Compare with Previous | Blame | View Log
// PR c++/34824
struct A;
struct B
{
B (A const &); // { dg-message "note" }
B (B &); // { dg-message "note" }
};
struct A
{
A (B); // { dg-error "initializing" }
};
B
f (B const& b)
{
return b; // { dg-error "matching" "matching" }
// { dg-message "candidate" "candidate note" { target *-*-* } 19 }
}
Go to most recent revision | Compare with Previous | Blame | View Log