Facilitate the merge
[mono.git] / mcs / errors / cs0236-2.cs
1 // cs0236-2.cs: A field initializer cannot reference the nonstatic field, method, or property `C1.CC'
2 // Line: 11\r
3 \r
4 class C1
5 {\r
6     public double CC = 0;
7 }
8
9 class C2
10 {
11         public static readonly double X_Small2 = C1.CC;
12 }