URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [overload/] [volatile1.C] - Rev 701
Go to most recent revision | Compare with Previous | Blame | View Log
// PR c++/48118
// { dg-prune-output "note" }
struct A { };
void f (A); // { dg-error "argument 1" }
void (*g)(A);
int main()
{
volatile A a;
f(a); // { dg-error "no match" }
g(a); // { dg-error "no match" }
}
Go to most recent revision | Compare with Previous | Blame | View Log