java highlighting tests moved to community

This commit is contained in:
Alexey Kudravtsev
2010-06-25 12:46:38 +04:00
parent 7ec040c1ec
commit 735a9d17a8
243 changed files with 22082 additions and 0 deletions
@@ -0,0 +1,37 @@
// recusrsive ctr call
class s {
<error descr="Recursive constructor invocation">s()</error> {
this();
}
<error descr="Recursive constructor invocation">s(int i)</error> {
this(2);
}
}
class c {
c() {
this(2);
}
<error descr="Recursive constructor invocation">c(int i)</error> {
this(1,1);
}
<error descr="Recursive constructor invocation">c(int i, int k)</error> {
this(1);
}
}
class cv {
cv() {
this(1);
}
cv(int i) {
this(1,2);
}
cv(int i,int j) {}
}