2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / libjava / testsuite / libjava.lang / initfield.java
blob4ee6154806d6b46f463638c644b19b0af88099b8
1 // gcj generated buggy code when we reference a field of a
2 // non-constant member that we inherit from an interface.
4 interface iface
6 final value x = new value();
9 final class value
11 Object field = "maude";
14 public class initfield implements iface
16 public static void main(String[] args)
18 System.out.println(x.field);