2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / libjava / testsuite / libjava.cni / shortfield.java
blob68b6c5e22fb1f29250eebd12f8632fc5efafd60e
1 class shortfieldbase
3 short modCount;
6 public class shortfield extends shortfieldbase
8 short size__;
9 int data;
11 native void ouch ();
13 public static void main (String[] s)
15 shortfield f = new shortfield();
16 f.modCount = 99;
17 f.size__ = 2;
18 f.data = 0x12345678;
19 f.ouch();