aboutsummaryrefslogtreecommitdiffstats
path: root/src/test/test2/ConstBody.java
blob: 3fad860c000937d275009a975030ab9f8604afa4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package test2;

class ConstBody2 {
    int value;
    ConstBody2() {
        value = 1;
    }

    ConstBody2(String s, Integer i) {
        value = 2;
    }
}

public class ConstBody extends ConstBody2 {
    public ConstBody() {
        super();
    }

    public int bar() {
        return value;
    }
}