Merge pull request #3563 from lewurm/interpreter
[mono.git] / mcs / tests / test-partial-04.cs
1 // Compiler options: -langversion:default
2
3 namespace A
4 {
5         interface IFoo
6         {
7                 void Hello (IFoo foo);
8         }
9 }
10
11 namespace B
12 {
13         partial class Test
14         { }
15 }
16
17 namespace B
18 {
19         using A;
20
21         partial class Test : IFoo
22         {
23                 void IFoo.Hello (IFoo foo)
24                 { }
25         }
26 }
27
28 class X
29 {
30         public static void Main ()
31         { }
32 }