summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0082-7.cs
blob: 7be26724d518ae5731a523a6947332ca8f4e436b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// CS0082: A member `ErrorClass.get_Blah(int)' is already reserved
// Line: 8

using System.Runtime.CompilerServices;
class ErrorClass {
	[IndexerName ("Blah")]
	public int this [int a] {
            get { return 1; }
	}
        
        public void get_Blah (int b) {}
	
        public static void Main ()
        {
        }
}