[wasm] Fix WASM CI script. (#6741)
[mono-project.git] / mcs / errors / cs3005-12.cs
blob81dfe85d19655134aa8e5343f8cdea05965e08f2
1 // CS3005: Identifier `CLSClass.NameAbC(int)' differing only in case is not CLS-compliant
2 // Line: 9
3 // Compiler options: -warnaserror
5 using System;
6 [assembly:CLSCompliant (true)]
8 public class CLSClass {
9 public int NameABC;
10 public static void NameAbC(int arg) {}