[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0082-7.cs
1 // CS0082: A member `ErrorClass.get_Blah(int)' is already reserved
2 // Line: 8
3
4 using System.Runtime.CompilerServices;
5 class ErrorClass {
6         [IndexerName ("Blah")]
7         public int this [int a] {
8             get { return 1; }
9         }
10         
11         public void get_Blah (int b) {}
12         
13         public static void Main ()
14         {
15         }
16 }