2010-04-07 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / gtest-240.cs
blob35fd4057f2c3f37758421829fd33d7f9b9a73b0f
1 using System;
3 interface IMyInterface<T>
5 event EventHandler MyEvent;
8 public class MyClass: IMyInterface<string>, IMyInterface<int>
10 event EventHandler IMyInterface<string>.MyEvent
12 add {}
13 remove {}
16 event EventHandler IMyInterface<int>.MyEvent
18 add {}
19 remove {}
24 class X
26 static void Main ()
27 { }