fixes for host gcc 4.6.1
[zpugcc/jano.git] / toolchain / gcc / libjava / testsuite / libjava.compile / abstr.java
blobf59db268bc31d6187150197c7f6b54aa0067f354
1 // This fails to compile from bytecode for some versions of the compiler.
3 interface foo
5 public void start ();
8 public abstract class abstr implements foo
10 public void doit ()
12 start ();