do not check order sequence if option /order was not used
[mono.git] / mcs / tests / test-714.cs
1 using System;
2
3 class Hello : IFoo
4 {
5         void IBar.Test ()
6         {
7         }
8         
9         static void Main ()
10         {
11         }
12 }
13
14 interface IBar
15 {
16         void Test ();
17 }
18
19 interface IFoo : IBar
20 {
21 }