Merge pull request #4419 from BrzVlad/fix-oom-nre
[mono.git] / mcs / tests / test-577.cs
1 using System;
2
3 interface IA
4 {
5         event EventHandler e_a, e_b;
6 }
7
8 class C : IA
9 {
10         event EventHandler IA.e_a { add {} remove {} }
11         event EventHandler IA.e_b { add {} remove {} }
12         
13         public static void Main ()
14         {
15         }
16 }