2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / libjava / testsuite / libjava.compile / PR5641.java
blob8c7d3aa27c004e7cb93db7e98147efd95b69cbfc
1 interface I
3 void m();
5 abstract class C implements I {}
6 class Foo
8 void Bar(C c)
10 c.m();
12 void blah(C c)
14 c.m();
17 public static void main (String[] args)