Merge pull request #5693 from lateralusX/lateralusX/disable-stack-overflow-win-x64
[mono.git] / mcs / errors / cs0266-7.cs
1 // CS0266: Cannot implicitly convert type `long' to `int'. An explicit conversion exists (are you missing a cast?)
2 // Line : 6
3
4 class X {
5     const uint a = 2;
6     const int b = -a;
7 }
8
9
10