Merging 7971:887db7d64bc9 with 7970:21b063622472.
[cacao.git] / tests / nan.java
1 public class nan
2 {
3         public static void main(String[] s) {
4                 double a,b,c;
5                 a = -1;
6                 b = 0;
7                 c = a/b;
8
9                 System.out.println (Long.toString(Double.doubleToLongBits(c)>>>4, 16) );
10                 }
11         }