aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/g++.dg/other/java1.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8.1/gcc/testsuite/g++.dg/other/java1.C')
-rw-r--r--gcc-4.8.1/gcc/testsuite/g++.dg/other/java1.C22
1 files changed, 0 insertions, 22 deletions
diff --git a/gcc-4.8.1/gcc/testsuite/g++.dg/other/java1.C b/gcc-4.8.1/gcc/testsuite/g++.dg/other/java1.C
deleted file mode 100644
index 38b5e0c30..000000000
--- a/gcc-4.8.1/gcc/testsuite/g++.dg/other/java1.C
+++ /dev/null
@@ -1,22 +0,0 @@
-// { dg-options "-w -ansi -pedantic" }
-
-// Copyright (C) 2003 Free Software Foundation, Inc.
-// Contributed by Nathan Sidwell 23 Oct 2003 <nathan@codesourcery.com>
-
-extern "Java" {
- class One
- {
- ~One (); // { dg-error "cannot have a destructor" "" }
- One ();
- };
-
- class Two {};
-
- class Three : One {}; // { dg-error "cannot have an implicit" "" }
-
- class Four : Two {};
-
- class Five : Two, Four {}; // { dg-error "cannot have multiple bases" "" }
-
- class Six : virtual Two {}; // { dg-error "cannot have virtual base" "" }
-}