OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [g++.old-deja/] [g++.mike/] [pmf3.C] - Diff between revs 154 and 816

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 154 Rev 816
// { dg-do assemble  }
// { dg-do assemble  }
struct Fooey {
struct Fooey {
  void f(char* pX);
  void f(char* pX);
  void f(int in);
  void f(int in);
  void f(float fx);
  void f(float fx);
  void h(double dx);
  void h(double dx);
};
};
void Fooey::f(char*) { }        // { dg-error "" } candidate
void Fooey::f(char*) { }        // { dg-error "" } candidate
void Fooey::f(int) { }          // { dg-error "" } candidate
void Fooey::f(int) { }          // { dg-error "" } candidate
void Fooey::f(float) { }        // { dg-error "" } candidate
void Fooey::f(float) { }        // { dg-error "" } candidate
void Fooey::h(double zahl) { }
void Fooey::h(double zahl) { }
int main() {
int main() {
  Fooey Blah;
  Fooey Blah;
  void (Fooey::*pointer)(double);
  void (Fooey::*pointer)(double);
  pointer = &Fooey::f;           // { dg-error "" } don't call Fooey::h
  pointer = &Fooey::f;           // { dg-error "" } don't call Fooey::h
  (Blah.*pointer)(42.5);
  (Blah.*pointer)(42.5);
  return 0;
  return 0;
}
}
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.