aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.benjamin/p13721.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.benjamin/p13721.C')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.benjamin/p13721.C21
1 files changed, 0 insertions, 21 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.benjamin/p13721.C b/gcc/testsuite/g++.old-deja/g++.benjamin/p13721.C
deleted file mode 100644
index be1df799082..00000000000
--- a/gcc/testsuite/g++.old-deja/g++.benjamin/p13721.C
+++ /dev/null
@@ -1,21 +0,0 @@
-// Build don't link:
-// prms-id: 13721
-
-class A
-{
- public :
- int a;
-};
-class B : public A
-{
- public :
- void cmp(int a, int b) {}
- B(int a = 0)
- {
- cmp(A::a, a); //should not give warning
- }
-};
-int main(void)
-{
- return(1);
-}