[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0225.cs
blob883fbd5a2d12a3aaa1bbe78f48bd5bae4f53eb17
1 // CS0225: The params parameter must be a single dimensional array
2 // Line: 6
4 public class X
6 public static void Test (params int a)
10 public static void Main()
12 Test (1);