2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mono / tests / rounding.cs
1 public class TestJit {
2
3         public static int Main() {
4                 long ticks = 631502475130080000L;
5                 long ticksperday = 864000000000L;
6
7                 double days = (double) ticks / ticksperday;
8
9                 if ((int)days != 730905)
10                         return 1;
11
12                 return 0;
13         }
14 }
15