blob: 663878e55a88e2b384e01445904ce9b2f66e32c1 [file] [log] [blame]
// Negative explicit conv test.
// { dg-do compile { target c++11 } }
struct A {
A(const A&, int = 0); // { dg-message "note" }
};
struct B
{
explicit operator A();
};
int main()
{
B b;
(A(b)); // OK
(A(b,1)); // { dg-error "no match" }
// { dg-message "candidate" "candidate note" { target *-*-* } 16 }
}