**** Merged from MCS ****
[mono-project.git] / mcs / errors / cs3005-20.cs
blob1d153d362ac9430a0649d3a6d79d76f8ad757b47
1 // cs3005.cs: Identifier 'I.BLAH.get' differing only in case is not CLS-compliant
2 // Line: 15
4 using System.Runtime.CompilerServices;
5 using System;
7 [assembly: CLSCompliant (true)]
9 public interface I {
10 [IndexerName ("blah")]
11 int this [int a] {
12 get;
15 int BLAH { get; }