[w32file] Remove dead code
[mono.git] / mcs / errors / cs0542-5.cs
1 // CS0542: `Item.this[int]': member names cannot be the same as their enclosing type
2 // Line: 6
3
4 class Item
5 {
6         public int this[int i] {
7                 set {}
8         }
9 }
10