mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-08 21:52:48 +07:00
GitOrigin-RevId: fd52ace3d7a32ecd02c2c5ab90e077967604c15e
12 lines
232 B
Java
12 lines
232 B
Java
/*
|
|
Value is always false (((char) x) < 0; line#10)
|
|
Result of '(char)' cast is in {0..65535} ((char) x; line#10)
|
|
*/
|
|
|
|
import java.util.List;
|
|
|
|
class Test {
|
|
void test(int x) {
|
|
if (<selection>((char) x) < 0</selection>) {}
|
|
}
|
|
} |