aboutsummaryrefslogtreecommitdiffstats
path: root/src/test/test1/ExprEdit3.java
blob: ecfcc676070e9e6ecefd9e3ecab4934a2e077894 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package test1;

public class ExprEdit3 {
    int value;

    private int f() { return 3; }

    public ExprEdit3() { value = 0; }

    public ExprEdit3(ExprEdit3 e, int i) { value = i; }

    public int k1() { return new ExprEdit3(null, f()).value; }
}