This commit is contained in:
Dmitry Jemerov
2009-09-10 20:13:55 +04:00
parent f6b9382f4e
commit 40139d670a
49 changed files with 14 additions and 7 deletions
@@ -0,0 +1,13 @@
class Test {
int myT;
{
myT = 0;
}
public int getMyT() {
return myT;
}
void bar(){
int i = myT;
}
}