summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/method.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.jason/method.C')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.jason/method.C12
1 files changed, 0 insertions, 12 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.jason/method.C b/gcc/testsuite/g++.old-deja/g++.jason/method.C
deleted file mode 100644
index e9496b82861..00000000000
--- a/gcc/testsuite/g++.old-deja/g++.jason/method.C
+++ /dev/null
@@ -1,12 +0,0 @@
-// Bug: pointer to pointer is treated as plain pointer.
-// PRMS Id: 1767
-// Build don't link:
-
-class Foo {
-public:
- void method();
-};
-
-void func(Foo ** ppFoo) {
- ppFoo->method(); // ERROR -
-}