2010-06-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0266-10.cs
blobc566a3481433d1940c422c64d1200bc220835a7b
1 // cs0266: Cannot implicitly convert type `long' to `int'. An explicit conversion exists (are you missing a cast?)
2 // Line: 7
4 public class Test
6 const uint a = 2147483648;
7 const int b = -a;