[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0266-10.cs
1 // CS0266: Cannot implicitly convert type `long' to `int'. An explicit conversion exists (are you missing a cast?)
2 // Line: 7
3
4 public class Test
5 {
6         const uint a = 2147483648;
7         const int b = -a;
8 }