[bcl] Update BCL Linked Size
[mono-project.git] / mcs / errors / cs0154-3.cs
blob855be8181745ff6fa28c9be6f7f20ee8ab92b446
1 // CS0154: 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];