summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0236-2.cs
blob: 82a0ca9302f747c843bcd9b00906736d25866789 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS0236: A field initializer cannot reference the nonstatic field, method, or property `C1.CC'
// Line: 11

class C1
{
    public double CC = 0;
}

class C2
{
	public static readonly double X_Small2 = C1.CC;
}