2007-03-09 Chris Toshok <toshok@ximian.com>
[mcs.git] / errors / cs0154-3.cs
blob219853b3b84777a004239ea90268b68a4423b325
1 // cs0154-3.cs: The property or indexer `Test.this[bool]' cannot be used in this context because it lacks the `get' accessor
2 // Line: 13
4 class Test
6 public int this[bool b] { set {} }
9 class C
11 public static void Main ()
13 int i = new Test()[false];