* configure.ac: Use AC_PROG_FC, FC and FCFLAGS instead of
[official-gcc.git] / 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 ();