[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs1501-12.cs
1 // CS1501: No overload for method `this' takes `1' arguments
2 // Line: 13
3
4 public class Blah
5 {
6         int this [short id, string v] {
7                 set {}
8         }
9
10         public void Test ()
11         {
12                 dynamic d = 1;
13                 this [d] = 1;
14         }
15 }