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