]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.mike/pmf3.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.mike / pmf3.C
diff --git a/gcc/testsuite/g++.old-deja/g++.mike/pmf3.C b/gcc/testsuite/g++.old-deja/g++.mike/pmf3.C
deleted file mode 100644 (file)
index b38f0b7..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-struct Fooey {
-  void f(char* pX);
-  void f(int in);
-  void f(float fx);
-  void h(double dx);
-};
-
-void Fooey::f(char*) { }       // ERROR - candidate
-void Fooey::f(int) { }         // ERROR - candidate
-void Fooey::f(float) { }       // ERROR - candidate
-void Fooey::h(double zahl) { }
-
-int main() {
-  Fooey Blah;
-  void (Fooey::*pointer)(double);
-  pointer = &Fooey::f;         // ERROR - don't call Fooey::h
-  (Blah.*pointer)(42.5);
-  return 0;
-}