aboutsummaryrefslogtreecommitdiff
path: root/src/test/test1/ExprEdit8.java
blob: a38b744a79e3df6faec734b45203349db9070cc9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package test1;

class ExprSuper8 {
    int value;
    ExprSuper8(int i) {
        value = i;
    }
}

public class ExprEdit8 extends ExprSuper8 {
    public ExprEdit8() { super(3); }

    public int k1() {
	return value;
    }
}