1 public class PR6520
2 {
3    public static void check (double x, double y)
4    {
5      System.out.println (x == y);
6    }
7 
8    public static void main(String[] args)
9    {
10      check (Math.min (2.0f, Float.NaN), Float.NaN);
11    }
12  }
13 
14