Files

7 lines
136 B
Java

class Test {
void f(double x, float y) {
if (x == Double.NaN) return; // $ Alert
if (y == Float.NaN) return; // $ Alert
}
}