for "build" config, import corlib common sources at unix instead (#11989)
[mono-project.git] / mcs / errors / cs3005-20.cs
blob475ab99c279f1cd28b99a58d158d12d6349e8eed
1 // CS3005: Identifier `I.BLAH.get' differing only in case is not CLS-compliant
2 // Line: 16
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; }