aboutsummaryrefslogtreecommitdiff
path: root/src/test/test2/RemoveCall.java
blob: 909ef37734665a3b7e468bb1d43a7fb6498ae02f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package test2;

public class RemoveCall {
    int k = 0;
    public int bar() throws Exception {
        foo(3);
        return k;
    }

    public void foo(int k) throws Exception {
        k = 1;
    }
}