2010-04-06 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / test-partial-04.cs
blob3158d8e5cc56754bf534ae16e5ac364a78e861f1
1 // Compiler options: -langversion:default
3 namespace A
5 interface IFoo
7 void Hello (IFoo foo);
11 namespace B
13 partial class Test
14 { }
17 namespace B
19 using A;
21 partial class Test : IFoo
23 void IFoo.Hello (IFoo foo)
24 { }
28 class X
30 static void Main ()
31 { }