input revision 324c4644fee44b9898524c09511bd33c3f12e2df
1method foo() {
2  i = 3;
3  k = i;
4  i = k*4;
5}
6
7method bar() {
8  j = i*2;
9}
10