blob: 6a774c6770b4badffc856ae06fae6ab815d3f78c [file] [log] [blame]
// PR c++/34824
struct A;
struct B
{
B (A const &); // { dg-message "note" }
B (B &); // { dg-message "note" }
};
struct A
{
A (B);
};
B
f (B const& b)
{
return b; // { dg-error "matching" "matching" }
// { dg-error "initializing" "initializing" { target *-*-* } 19 }
}