Fix DateTime.Now and CurrentTimeToUtc during DST transition time (#4172)
[mono-project.git] / mcs / tests / test-577.cs
blobb55573a79a904199df7fa21ec63b7bc3b4b20bde
1 using System;
3 interface IA
5 event EventHandler e_a, e_b;
8 class C : IA
10 event EventHandler IA.e_a { add {} remove {} }
11 event EventHandler IA.e_b { add {} remove {} }
13 public static void Main ()