summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0191-2.cs
blob: 1f1348e06c2af3814bf2f2568a5b4bfa73761b35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// CS0191: A readonly field `Foo.i' cannot be assigned to (except in a constructor or a variable initializer)
// Line: 10 

class Foo {
	readonly int i;
	Foo () { }
	Foo (int i)
	{
		Foo x = new Foo ();
		x.i = i;
	}
	static void Main () { Foo y = new Foo (0); }
}