2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0236-2.cs
blob01745910ac45e1ae19d318c5b4551598fdcc21af
1 // cs0236-2.cs: A field initializer cannot reference the nonstatic field, method, or property `C1.CC'
2 // Line: 11
4 class C1
6 public double CC = 0;
9 class C2
11 public static readonly double X_Small2 = C1.CC;