2005-07-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
[mono.git] / mcs / errors / cs3005-20.cs
1 // cs3005-20.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 }