mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-17 11:40:50 +07:00
8 lines
202 B
Java
8 lines
202 B
Java
class Test {
|
|
public static final String CONST = "foo bar";
|
|
private void test() {
|
|
String s = CONST;
|
|
System.out.println(<caret><warning descr="Value 's' is always 'CONST'">s</warning>);
|
|
}
|
|
|
|
} |