[runtime] Avoid indirection when building MonoContext on darwin
[mono.git] / mcs / errors / cs3005-18.cs
1 // CS3005: Identifier `B.TEST()' differing only in case is not CLS-compliant
2 // Line: 15
3 // Compiler options: -warnaserror
4
5 using System;
6
7 [assembly: CLSCompliantAttribute (true)]
8
9 public class A
10 {
11     [CLSCompliant (false)]
12     public void Test () {}
13         
14     public void test () {}
15 }
16
17 public class B: A
18 {
19     public void TEST () {} 
20 }