Revert "doh, miscopied file names."
[mono-project.git] / mcs / errors / cs0236-2.cs
blob82a0ca9302f747c843bcd9b00906736d25866789
1 // CS0236: 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;