No empty .Rs/.Re
[netbsd-mini2440.git] / gnu / dist / gcc4 / gcc / testsuite / g++.dg / other / java1.C
blob38b5e0c3070111a08438605c2960cd62f9801584
1 // { dg-options "-w -ansi -pedantic" }
3 // Copyright (C) 2003 Free Software Foundation, Inc.
4 // Contributed by Nathan Sidwell 23 Oct 2003 <nathan@codesourcery.com>
6 extern "Java" {
7   class One 
8   {
9     ~One (); // { dg-error "cannot have a destructor" "" }
10     One ();
11   };
13   class Two {};
15   class Three : One {}; // { dg-error "cannot have an implicit" "" }
17   class Four : Two {};
19   class Five : Two, Four {}; //  { dg-error "cannot have multiple bases" "" }
21   class Six : virtual Two {}; // { dg-error "cannot have virtual base" "" }