[arm64] Add the full neon regs to the context
[mono.git] / mcs / errors / cs0031-2.cs
1 // CS0031: Constant value `-1' cannot be converted to a `byte'
2 // Line: 9
3
4 public class Test
5 {
6         public static void Main()
7         {
8                 byte b = -1;
9         }
10 }