dlr bug
[mcs.git] / tests / test-partial-16.cs
blobe05ccd43098c93418378ea1158b9cdb6097422ce
1 namespace A
3 partial class C
8 namespace A
10 using B;
12 partial class C
14 public static bool f = C2.Test ();
15 object o = new C2().Test_I ();
19 namespace B
21 partial class C2
23 public static bool Test ()
25 return false;
28 public object Test_I ()
30 return this;
33 public static void Main ()