aboutsummaryrefslogtreecommitdiff
path: root/libjava/testsuite/libjava.compile/abstr.java
blob: f59db268bc31d6187150197c7f6b54aa0067f354 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// This fails to compile from bytecode for some versions of the compiler.

interface foo
{
  public void start ();
}

public abstract class abstr implements foo
{
  public void doit ()
  {
    start ();
  }
}