summaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.c++/pr-574.cc
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/testsuite/gdb.c++/pr-574.cc')
-rw-r--r--gdb/testsuite/gdb.c++/pr-574.cc22
1 files changed, 0 insertions, 22 deletions
diff --git a/gdb/testsuite/gdb.c++/pr-574.cc b/gdb/testsuite/gdb.c++/pr-574.cc
deleted file mode 100644
index eb06b61b7ae..00000000000
--- a/gdb/testsuite/gdb.c++/pr-574.cc
+++ /dev/null
@@ -1,22 +0,0 @@
-/*
- An attempt to replicate PR gdb/574 with a shorter program.
-
- Printing out *theB failed if the program was compiled with GCC 2.95.
-*/
-
-class A {
-public:
- virtual void foo() {}; // Stick in a virtual function.
- int a; // Stick in a data member.
-};
-
-class B : public A {
- static int b; // Stick in a static data member.
-};
-
-int main()
-{
- B *theB = new B;
-
- return 0; // breakpoint: constructs-done
-}