2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / tests / 2test-13.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         static void Main ()
31         { }
32 }