blob: 62b1f980e33703e2fbeb0ae883609b2ec980ada8 [file] [log] [blame]
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;
}
}