mirror of
https://github.com/github/codeql.git
synced 2026-06-22 21:27:04 +02:00
7 lines
136 B
Java
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
|
|
}
|
|
}
|