blob: d37719b0252a3b58613a93cb5567222a3a4b1982 (
plain)
1
2
3
4
5
6
7
8
9
|
package test3;
public class InheritCons {
int value;
public InheritCons() { this(2); }
private InheritCons(int i) { value = i; }
protected InheritCons(String s) { this(0); }
InheritCons(char c) { this(1); }
}
|