2010-04-06 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0266-10.cs
blobcab2f62383fcd048e39a1e2722f4932134bab75e
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;