summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/opt/pr71529.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.dg/opt/pr71529.C')
-rw-r--r--gcc/testsuite/g++.dg/opt/pr71529.C22
1 files changed, 0 insertions, 22 deletions
diff --git a/gcc/testsuite/g++.dg/opt/pr71529.C b/gcc/testsuite/g++.dg/opt/pr71529.C
deleted file mode 100644
index 148527f00c4..00000000000
--- a/gcc/testsuite/g++.dg/opt/pr71529.C
+++ /dev/null
@@ -1,22 +0,0 @@
-// PR middle-end/71529
-// { dg-do compile { target { { i?86-*-* x86_64-*-* } && { ! x32 } } } }
-// { dg-options "-fcheck-pointer-bounds -mmpx -O2" }
-
-class c1
-{
- public:
- virtual ~c1 ();
-};
-
-class c2
-{
- public:
- virtual ~c2 ();
-};
-
-class c3 : c1, c2 { };
-
-int main (int, char **)
-{
- c3 obj;
-}