[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs3001-2.cs
blob90fd9bf4a6030f9f4c0e0d2e7fb566cf631abc44
1 // CS3001: Argument type `ulong' is not CLS-compliant
2 // Line: 10
3 // Compiler options: -warnaserror -warn:1
5 using System;
6 [assembly:CLSCompliant (true)]
8 public class CLSClass {
9 public CLSClass (long a) {}
10 public CLSClass (ref ulong a) {}