Merge pull request #5234 from vkargov/vk-kiokunegi
[mono.git] / mcs / errors / cs0548-4.cs
1 // CS0548: `IndexerClass.this[bool]': property or indexer must have at least one accessor
2 // Line: 5
3
4 class IndexerClass {
5         public int this [bool b] { }
6 }