[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs1510-4.cs
blobd7cc3b061d6c7f10bb77c2c96fbfd64b5347ff25
1 // CS1510: A ref or out argument must be an assignable variable
2 // Line: 13
4 class M
6 static void Test (ref byte b)
10 public static void Main ()
12 byte b = 1;
13 Test (ref (byte) b);