mirror of
https://github.com/github/codeql.git
synced 2026-01-06 03:00:24 +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;
|
|
}
|
|
}
|