view gcc/testsuite/g++.old-deja/g++.mike/pmf3.C @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
line wrap: on
line source

// { 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-message "" } candidate
void Fooey::f(int) { }		// { dg-message "" } candidate
void Fooey::f(float) { }	// { dg-message "" } 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;
}