[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0031.cs
blobf62ab0ab7451771473fc98a794793b16f65fbde0
1 // CS0031: Constant value `1022' cannot be converted to a `byte'
2 // Line: 9
4 public class Test
6 public static void Main()
8 unchecked {
9 byte b = 1024 - 2;