2007-03-19 Chris Toshok <toshok@ximian.com>
[mono-project.git] / mcs / errors / cs0200-2.cs
blobd4b16d31125dc0dc166d4111dc568916cd0aaf67
1 // CS0200: Property or indexer 'X.this[int]' cannot be assigned to -- it is read only
2 // Line: 12
4 class X {
5 int this[int i] {
6 get {
7 return 1;
11 static int Main ()
13 X x = new X ();
14 x[0] = 10;
15 return 1;