URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [overload/] [conv-op1.C] - Rev 764
Go to most recent revision | Compare with Previous | Blame | View Log
// PR c++/47703
typedef void (*pfn)(int &);
struct A
{
operator pfn() { return 0; }
};
void f()
{
const int i = 42;
A()(i); // { dg-message "<conversion>" }
}
// { dg-prune-output "no match" }
// { dg-prune-output "candidate" }
Go to most recent revision | Compare with Previous | Blame | View Log