[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / errors / cs3005-18.cs
blobf711c5a8787d445e57760ec9e90f614045bd7bd3
1 // CS3005: Identifier `B.TEST()' differing only in case is not CLS-compliant
2 // Line: 15
3 // Compiler options: -warnaserror
5 using System;
7 [assembly: CLSCompliantAttribute (true)]
9 public class A
11 [CLSCompliant (false)]
12 public void Test () {}
14 public void test () {}
17 public class B: A
19 public void TEST () {}