Fix DateTime.Now and CurrentTimeToUtc during DST transition time (#4172)
[mono-project.git] / mcs / tests / test-934.cs
blob62b300d60547f6c04fe61ac961a6fe4bc7107343
1 class X
3 public static int Main ()
5 var a = new byte[] { };
6 var b = new byte[] { };
7 if (a.Equals (b))
8 return 1;
10 if (ReferenceEquals (a, b))
11 return 2;
13 a = new byte[0];
14 b = new byte[0];
15 if (a.Equals (b))
16 return 3;
18 if (ReferenceEquals (a, b))
19 return 4;
21 return 0;