Better function header dump
[official-gcc.git] / libjava / testsuite / libjava.lang / bclink.java
blobb10c678e123ff969ae107be16b6412877a91cba6
1 // This tests that a C++ ABI class can derive from a BC ABI class.
2 // This can't always work, but if the base class does not change then
3 // it will work fine.
5 import org.xml.sax.*;
7 public class bclink extends SAXParseException {
8 public bclink() { super ("hi", null); }
10 public static void main(String[] args) throws Throwable {