rt_gccstream/gcc/testsuite/g++.dg/cpp0x/explicit4.C

18 lines
254 B
C

// Negative explicit conv test.
// { dg-options "-std=c++0x" }
struct A {
A(const A&, int = 0); // { dg-message "candidate" }
};
struct B
{
explicit operator A();
};
int main()
{
B b;
(A(b)); // OK
(A(b,1)); // { dg-error "no match" }
}