blob: 9f0435bf4b3db7138ffc2bb64fd732dba9a61fbc [file] [log] [blame]
class Test {
public static int i;
int method(int a, int anObject) {
return anObject;
}
}
class X {
public static int i;
int yyy(int z) {
Test t;
return t.method(z, z + Test.i);
}
}