summaryrefslogtreecommitdiff
path: root/mcs/errors/cs3005-20.cs
blob: 475ab99c279f1cd28b99a58d158d12d6349e8eed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// CS3005: Identifier `I.BLAH.get' differing only in case is not CLS-compliant
// Line: 16
// Compiler options: -warnaserror

using System.Runtime.CompilerServices;
using System;

[assembly: CLSCompliant (true)]

public interface I {
	[IndexerName ("blah")]
	int this [int a] {
            get;
	}

 	int BLAH { get; }
}