aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.mike/p11142.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.mike/p11142.C')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.mike/p11142.C18
1 files changed, 0 insertions, 18 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.mike/p11142.C b/gcc/testsuite/g++.old-deja/g++.mike/p11142.C
deleted file mode 100644
index a22ca45bbd7..00000000000
--- a/gcc/testsuite/g++.old-deja/g++.mike/p11142.C
+++ /dev/null
@@ -1,18 +0,0 @@
-// Build don't link:
-// Special g++ Options: -fexceptions -O -g
-// prms-id: 11142
-
-class RWxmsg {
-public:
- RWxmsg();
- virtual ~RWxmsg();
-};
-
-class RWTHRInternalError : public RWxmsg {
-public:
- virtual ~RWTHRInternalError() { }
-};
-
-void setCount(int count) {
- throw RWTHRInternalError();
-}