1 package test2;
2 
3 public class RemoveCall {
4     int k = 0;
bar()5     public int bar() throws Exception {
6         foo(3);
7         return k;
8     }
9 
foo(int k)10     public void foo(int k) throws Exception {
11         k = 1;
12     }
13 }
14