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

class C
{
	object stuff = stuff;
	
	public C (object stuff)
	{
	}
}