mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-11 19:49:32 +00:00
22 lines
315 B
Java
22 lines
315 B
Java
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();
|
|
}
|
|
}
|