This commit is contained in:
Dmitry Jemerov
2009-09-11 16:52:51 +04:00
parent 6b902c21b2
commit 709e8381fc
31 changed files with 6 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
/**
* @see #Test1
*/
class Test1 {
public Test1() {
this(0);
new Test1();
}
public Test1(int i) {}
}

View File

@@ -0,0 +1,11 @@
/**
* @see #Test
*/
class Test {
public Test() {
this(0);
new Test();
}
public Test(int i) {}
}