mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 15:09:39 +07:00
java highlighting tests moved to community
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
class A {{
|
||||
String.valueOf(<error descr="Cannot resolve symbol 'chars'">chars</error>, 0, 10); // all arguments are highlighted when only chars has a problemij
|
||||
new String(<error descr="Cannot resolve symbol 'chars'">chars</error>, 0, 10); // highlighting is good here.
|
||||
|
||||
String.valueOf<error descr="'valueOf(char[], int, int)' in 'java.lang.String' cannot be applied to '(int, int, int)'">(0, 0, 10)</error>;
|
||||
new String<error descr="Cannot resolve constructor 'String(int, int, int)'">(0, 0, 10)</error>;
|
||||
}}
|
||||
Reference in New Issue
Block a user