2010-05-31 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / test-347.cs
blob178ac20af956ed376ace03ef5647bd030d2db335
1 namespace Whatever.Core {
2 public class Project {
5 public class A {
6 public Project Project {
7 get { return new Project(); }
12 namespace SomethingElse.Core {
13 public class Project {
17 namespace Whatever.App {
18 using Whatever.Core;
19 using SomethingElse.Core;
21 public class B : A {
22 public string Execute() {
23 return Project.ToString();
26 public static void Main ()
28 new B().Execute ();