2010-03-30 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs3005-20.cs
blobd75aebcdf2d6e5e8c344e7f3aa7ea75e2c8e5951
1 // CS3005: Identifier `I.this[int]' differing only in case is not CLS-compliant
2 // Line: 12
3 // Compiler options: -warnaserror
5 using System.Runtime.CompilerServices;
6 using System;
8 [assembly: CLSCompliant (true)]
10 public interface I {
11 [IndexerName ("blah")]
12 int this [int a] {
13 get;
16 int BLAH { get; }