This commit is contained in:
Dmitry Jemerov
2009-09-11 18:00:52 +04:00
parent 72bd275b27
commit 95f09e3317
27 changed files with 5 additions and 0 deletions
@@ -0,0 +1,15 @@
public class Test {
String str;
public Test(int i){}
public Test(){
this(2);
}
public Test(String s){
this(3);
str = s;
}
void foo(){}
public static void main(String[] args){
new Test(1).foo();
}
}
@@ -0,0 +1,15 @@
public class Test {
String str;
public Test(int i){}
public Test(){
this(2);
}
public Test(String s){
this(3);
str = s;
}
void foo(){}
public static void main(String[] args){
new Test(1).foo();
}
}