Properly initialize a rgctx template. Fixes bxc #1147.
[mono-project.git] / mcs / errors / cs0272-2.cs
blob7221f71ea65d158c9ee6eddd6722c4c650b4be61
1 // CS0272: The property or indexer `C.this[string]' cannot be used in this context because the 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;