aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/g++.dg/ext/ms-1.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8.1/gcc/testsuite/g++.dg/ext/ms-1.C')
-rw-r--r--gcc-4.8.1/gcc/testsuite/g++.dg/ext/ms-1.C17
1 files changed, 0 insertions, 17 deletions
diff --git a/gcc-4.8.1/gcc/testsuite/g++.dg/ext/ms-1.C b/gcc-4.8.1/gcc/testsuite/g++.dg/ext/ms-1.C
deleted file mode 100644
index 3963b7561..000000000
--- a/gcc-4.8.1/gcc/testsuite/g++.dg/ext/ms-1.C
+++ /dev/null
@@ -1,17 +0,0 @@
-
-// MS allows more things to be pointers to member functions
-// { dg-options "-fms-extensions" }
-
-struct X
-{
- void Foo (X *);
- void Bar ();
-};
-
-void Quux (void (X::*) ());
-
-void X::Foo (X *ptr) // { dg-message "candidate" }
-{
- Quux (Foo); // { dg-error "no matches" }
- Quux (Bar);
-}