* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / errors / cs0031-2.cs
1 // cs0031-2.cs: Constant value `-1' cannot be converted to a `byte'\r
2 // Line: 9\r
3 \r
4 public class Test\r
5 {\r
6         public static void Main()\r
7         {\r
8                 byte b = -1;\r
9         }\r
10 }