mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
java highlighting tests moved to community
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
class A_CR{
|
||||
public static final int CONST = <error descr="Cannot resolve symbol 'CONSTX'">CONSTX</error>;
|
||||
|
||||
{
|
||||
switch(0){
|
||||
case <error descr="Constant expression required">CONST</error>:
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
class AClass {
|
||||
private static final String SPACE = " ";
|
||||
class s {
|
||||
private static final String RET_VAL =
|
||||
"Roger" +
|
||||
SPACE +
|
||||
SPACE + // comment and uncomment this line
|
||||
" Dodger";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user