mirror of
https://github.com/github/codeql.git
synced 2025-12-18 09:43:15 +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;
|
|
}
|
|
}
|