2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0271-2.cs
blob5f702e0c5a15aa8b1267b84f7c6046c80d9342d0
1 // CS0271: The property or indexer `C.this[string]' cannot be used in this context because a `set' accessor is inaccessible
2 // Line: 13
4 class C
6 public int this [string i] { private set { } get { return 1; } }
9 public class Test
11 void Foo ()
12 { C c = new C ();
13 c [""] = 9;