mirror of
https://github.com/openRuyi-Project/gcc.git
synced 2026-06-16 16:35:51 +00:00
1632a23685
From-SVN: r54503
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);
|
|
}
|
|
}
|
|
|