inplace introduce variable

This commit is contained in:
anna
2010-10-15 17:09:31 +04:00
parent 850a856efe
commit 3ba50c2ca4
12 changed files with 369 additions and 109 deletions
@@ -1,6 +1,6 @@
class Test {
int myI;
void foo(int i){
this.myI = i;
myI = i;
}
}