blob: 10afc55f20043dc3e0906e5c4a629597553b65f6 [file] [log] [blame]
class Test {
int i;
int getI() {
return i;
}
void foo() {
i++;
System.out.println(getI());
Test t;
i = t.i;
}
}