blob: 888656880082881a1c7d0801b4b54fbdb10f78c7 [file] [log] [blame]
class Test {
int myT;
{
myT = 0;
}
public int getMyT() {
return myT;
}
void bar(){
int i = myT;
}
}