2010-04-06 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / test-199.cs
blobee41b58dfe85f6ccac3687bdefd1abf2e7834976
1 public class Test
3 public static int Main ()
5 N1.Foo.Foo2 foo2 = new N1.Foo.Foo2 ();
6 if (foo2.Talk () != 1)
7 return 1;
9 return 0;
13 namespace N1
15 public class Foo : N2.Bar
17 public class Foo2 : Bar2
22 public class Bar2
24 public int Talk ()
26 return 1;
31 namespace N2
33 public class Bar
35 private class Bar2
37 public int Talk ()
39 return 2;