2010-05-27 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0082-7.cs
blob7be26724d518ae5731a523a6947332ca8f4e436b
1 // CS0082: A member `ErrorClass.get_Blah(int)' is already reserved
2 // Line: 8
4 using System.Runtime.CompilerServices;
5 class ErrorClass {
6 [IndexerName ("Blah")]
7 public int this [int a] {
8 get { return 1; }
11 public void get_Blah (int b) {}
13 public static void Main ()