1 package test2;
2 
3 class ConstBody2 {
4     int value;
ConstBody2()5     ConstBody2() {
6         value = 1;
7     }
8 
ConstBody2(String s, Integer i)9     ConstBody2(String s, Integer i) {
10         value = 2;
11     }
12 }
13 
14 public class ConstBody extends ConstBody2 {
ConstBody()15     public ConstBody() {
16         super();
17     }
18 
bar()19     public int bar() {
20         return value;
21     }
22 }
23