2004-08-03 Martin Baulig <martin@ximian.com>
[mono.git] / mcs / tests / 2test-13.cs
1 namespace A
2 {
3         interface IFoo
4         {
5                 void Hello (IFoo foo);
6         }
7 }
8
9 namespace B
10 {
11         partial class Test
12         { }
13 }
14
15 namespace B
16 {
17         using A;
18
19         partial class Test : IFoo
20         {
21                 void IFoo.Hello (IFoo foo)
22                 { }
23         }
24 }
25
26 class X
27 {
28         static void Main ()
29         { }
30 }