Update Haiku support (#15674)
[mono-project.git] / mono / tests / time.cs
blob5e0cdfd5f4de419d2ceb13b44c0de1a9270fc829
1 using System;
3 class time_test {
5 static int Main ()
7 DateTime uepoch = new DateTime (1970, 1, 1);
9 if (uepoch.Ticks != 621355968000000000)
10 return 1;
12 TimeSpan ts = new TimeSpan (1, 0, 0);
13 Console.WriteLine (ts.Ticks);
15 return 0;