[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs3006.cs
blobd7e7721f2a3e97d1eb1258d3fbac9a1c0cd19463
1 // CS3006: Overloaded method `CLSClass.Test(ref int)' differing only in ref or out, or in array rank, is not CLS-compliant
2 // Line: 12
3 // Compiler options: -warnaserror -warn:1
5 using System;
6 [assembly: CLSCompliant(true)]
8 public class CLSClass {
9 public void Test(int a) {
12 public void Test(ref int b) {