OSDN Git Service

* testsuite/libjava.jacks/jacks.xfail (non-jls-zip-2): Now
[pf3gnuchains/gcc-fork.git] / libjava / testsuite / libjava.compile / abstr.java
1 // This fails to compile from bytecode for some versions of the compiler.
2
3 interface foo
4 {
5   public void start ();
6 }
7
8 public abstract class abstr implements foo
9 {
10   public void doit ()
11   {
12     start ();
13   }
14 }