URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.old-deja/] [g++.mike/] [pmf3.C] - Rev 699
Compare with Previous | Blame | View Log
// { dg-do assemble }
struct Fooey {
void f(char* pX);
void f(int in);
void f(float fx);
void h(double dx);
};
void Fooey::f(char*) { } // { dg-error "" } candidate
void Fooey::f(int) { } // { dg-error "" } candidate
void Fooey::f(float) { } // { dg-error "" } candidate
void Fooey::h(double zahl) { }
int main() {
Fooey Blah;
void (Fooey::*pointer)(double);
pointer = &Fooey::f; // { dg-error "" } don't call Fooey::h
(Blah.*pointer)(42.5);
return 0;
}