mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-05 16:36:56 +07:00
9 lines
202 B
Java
9 lines
202 B
Java
class Test {
|
|
public static void testFunc() {
|
|
int i = 10;
|
|
double d = 10;
|
|
if (<warning descr="Condition 'i == d' is always 'true'">i == d</warning>) {
|
|
System.out.println();
|
|
}
|
|
}
|
|
} |