[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs3005-21.cs
blob5454d6b8a4aec228672e890d78c3a81a88136e8d
1 // CS3005: Identifier `CLSClass.NameAbC' differing only in case is not CLS-compliant
2 // Line: 12
3 // Compiler options: -warnaserror
5 using System;
6 [assembly:CLSCompliant (true)]
8 public class CLSClass {
9 [CLSCompliant (false)]
10 public int NameABC;
12 public int NameAbc;
13 public int NameAbC;