do not check order sequence if option /order was not used
[mono.git] / mcs / tests / gtest-240.cs
1 using System;
2
3 interface IMyInterface<T>
4 {
5         event EventHandler MyEvent;
6 }
7
8 public class MyClass: IMyInterface<string>, IMyInterface<int>
9 {
10         event EventHandler IMyInterface<string>.MyEvent
11         {
12         add {}
13         remove {}
14         }
15
16         event EventHandler IMyInterface<int>.MyEvent
17         {
18         add {}
19         remove {}
20         }
21         
22 }
23
24 class X
25 {
26         static void Main ()
27         { }
28 }