blob: 3ab8a08d9a50ba44eec49d27d80634c209693c24 (
plain)
1
2
3
4
5
6
7
8
|
// CS0266: Cannot implicitly convert type `long' to `int'. An explicit conversion exists (are you missing a cast?)
// Line: 7
public class Test
{
const uint a = 2147483648;
const int b = -a;
}
|