2010-05-19 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / test-766.cs
blob7adfa390f1b40628708bba632cd16a75db4f1dbd
1 namespace A
3 using Base = B.Color;
5 class Color
7 protected Base Base
9 get { return Base.Blue; }
12 protected Base NewBase {
13 get {
14 return Base.From(1);
18 public static void Main ()
24 namespace B
26 public struct Color
28 public static Color Blue = new Color ();
30 public static Color From (int i)
32 return new Color ();