[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0662.cs
blobb33a9f7c2bfd3aab575678419e8df5d4b363af29
1 // CS0662: Cannot specify only `Out' attribute on a ref parameter. Use both `In' and `Out' attributes or neither
2 // Line: 8
4 using System.Runtime.InteropServices;
6 class C
8 void Test(int i1, [Out, Int] ref int i2) {}