URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [g++.dg/] [cpp0x/] [explicit4.C] - Rev 478
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 "candidate" }
};
struct B
{
explicit operator A();
};
int main()
{
B b;
(A(b)); // OK
(A(b,1)); // { dg-error "no match" }
}
Go to most recent revision | Compare with Previous | Blame | View Log