mirror of
https://github.com/gcc-mirror/gcc.git
synced 2026-05-06 23:25:24 +02:00
14 lines
225 B
Java
14 lines
225 B
Java
public class PR6520
|
|
{
|
|
public static void check (double x, double y)
|
|
{
|
|
System.out.println (x == y);
|
|
}
|
|
|
|
public static void main(String[] args)
|
|
{
|
|
check (Math.min (2.0f, Float.NaN), Float.NaN);
|
|
}
|
|
}
|
|
|