summaryrefslogtreecommitdiff
path: root/src/test/java/maurizio2/TestUser.oj
blob: 830569a954c6acb1fe56b5d3e3476201323d9dd6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import maurizio2;

public class TestUser {
    static short s = 0;
    static short as[] = null;
    static int o = 0;
    static int os[] = null;

    public static void main(String[] args) {
        Test t = new Test();
        t.foo(s, o);
        t.foo(as, os);
    }
}