mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-17 02:33:48 +07:00
10 lines
209 B
Java
10 lines
209 B
Java
class Test {
|
|
public static final int CONST = 23942;
|
|
private void test(int a) {
|
|
if (a == CONST) {
|
|
System.out.println(<caret><warning descr="Value 'a' is always 'CONST'">a</warning>);
|
|
}
|
|
|
|
}
|
|
|
|
} |