aboutsummaryrefslogtreecommitdiffstats
path: root/src/test/test1/SetBody.java
blob: 7849b27ae3ceeb5369e7b7405c7c1dfcb0a17a1f (plain)
1
2
3
4
5
6
7
8
9
package test1;

public class SetBody {
    int value;
    public int m1(int i, int j) { return i + j; }
    public void m2(int k) {}
    public void m3(int k) {}
    public int run() { m2(3); return m1(3, 4); }
}