mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-20 02:15:59 +07:00
7 lines
189 B
Java
7 lines
189 B
Java
class Fun {
|
|
public static void main(String[] args) throws Exception {
|
|
float f = 1f;
|
|
int x = <warning descr="Condition 'f == 1f' is always 'true'">f == 1f</warning> ? 1 : 2;
|
|
}
|
|
|
|
} |