2001-12-17 Dietmar Maurer <dietmar@ximian.com>
[mono.git] / mono / tests / time.cs
1 using System;
2
3 class time_test {
4         
5         static int Main ()
6         {
7                 DateTime uepoch = new DateTime (1970, 1, 1);
8
9                 if (uepoch.Ticks != 621355968000000000)
10                         return 1;
11                                 
12                 return 0;
13         }
14 }