2005-06-16 Sebastien Pouliot <sebastien@ximian.com>
[mono.git] / mcs / errors / cs3005-20.cs
1 // cs3005.cs: Identifier 'I.BLAH.get' differing only in case is not CLS-compliant
2 // Line: 15
3
4 using System.Runtime.CompilerServices;
5 using System;
6
7 [assembly: CLSCompliant (true)]
8
9 public interface I {
10         [IndexerName ("blah")]
11         int this [int a] {
12             get;
13         }
14
15         int BLAH { get; }
16 }