Fix DateTime.Now and CurrentTimeToUtc during DST transition time (#4172)
[mono-project.git] / mcs / tests / gtest-232.cs
blob262056ed1644486e595803cceb08b0afa8b0b929
1 // Compiler options: -r:gtest-232-lib.dll
2 using System;
4 class M
6 public static int Main ()
8 A<int>.B<bool>.C<string> v_1 = Factory.Create_1 ();
9 v_1.T = 5;
10 v_1.U = true;
11 v_1 = new A<int>.B<bool>.C<string> ();
13 A<int>.B2.C<string> v_2 = Factory.Create_2 ();
14 v_2.T2 = -5;
15 v_2 = new A<int>.B2.C<string> ();
17 A<int>.B2 v_3 = Factory.Create_3 ();
18 v_3.T = 99;
19 v_3 = new A<int>.B2 ();
21 return 0;