blob: 68b6c5e22fb1f29250eebd12f8632fc5efafd60e [file] [log] [blame]
class shortfieldbase
{
short modCount;
}
public class shortfield extends shortfieldbase
{
short size__;
int data;
native void ouch ();
public static void main (String[] s)
{
shortfield f = new shortfield();
f.modCount = 99;
f.size__ = 2;
f.data = 0x12345678;
f.ouch();
}
}