summaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.c++/casts.cc
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/testsuite/gdb.c++/casts.cc')
-rw-r--r--gdb/testsuite/gdb.c++/casts.cc20
1 files changed, 0 insertions, 20 deletions
diff --git a/gdb/testsuite/gdb.c++/casts.cc b/gdb/testsuite/gdb.c++/casts.cc
deleted file mode 100644
index 831add94418..00000000000
--- a/gdb/testsuite/gdb.c++/casts.cc
+++ /dev/null
@@ -1,20 +0,0 @@
-struct A
-{
- int a;
- A (int aa): a (aa) {}
-};
-
-struct B: public A
-{
- int b;
- B (int aa, int bb): A (aa), b(bb) {}
-};
-
-int
-main (int argc, char **argv)
-{
- A *a = new B(42, 1729);
- B *b = (B *) a;
-
- return 0; /* breakpoint spot: casts.exp: 1 */
-}