mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-09 15:41:26 +07:00
java highlighting tests moved to community
This commit is contained in:
@@ -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) {}
|
||||
}
|
||||
Reference in New Issue
Block a user