mirror of
https://github.com/github/codeql.git
synced 2025-12-19 18:33:16 +01:00
7 lines
114 B
Java
7 lines
114 B
Java
class Test {
|
|
void f(double x, float y) {
|
|
if (x == Double.NaN) return;
|
|
if (y == Float.NaN) return;
|
|
}
|
|
}
|