URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [other/] [java1.C] - Rev 693
Compare with Previous | Blame | View Log
// { 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" "" }
}