Keep order of parsed members (required by MD) to be more compatible with csc
[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 }