cleol
[mcs.git] / tests / gtest-147.cs
blobe16a86a033bccf8d62d7330c6e21355c4334eebe
1 namespace A
3 interface IFoo
5 void Hello (IFoo foo);
9 namespace B
11 partial class Test <T> : IDoo, A.IFoo where T : A.IFoo
12 { }
15 namespace B
17 using A;
19 partial class Test <T> : Y, IFoo where T : IFoo
21 void IFoo.Hello (IFoo foo)
22 { }
26 interface IDoo { }
28 class Y { }
30 class X
32 static void Main ()
33 { }