URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [cpp0x/] [explicit4.C] - Rev 701
Go to most recent revision | Compare with Previous | Blame | View Log
// Negative explicit conv test.
// { dg-options "-std=c++0x" }
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 }
}
Go to most recent revision | Compare with Previous | Blame | View Log