[runtime] Avoid indirection when building MonoContext on darwin
[mono.git] / mcs / errors / cs3005-11.cs
1 // CS3005: Identifier `clsInterface' differing only in case is not CLS-compliant
2 // Line: 10
3 // Compiler options: -warnaserror
4
5 using System;
6 [assembly:CLSCompliant (true)]
7
8 public interface CLSInterface {
9 }
10
11 public class clsInterface: CLSInterface {
12 }