blob: 43a794dc58d93f3ef67a2d9894f586c6a5cc2750 [file] [log] [blame]
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";
}
}