Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0266-10.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cab2f62383fcd048e39a1e2722f4932134bab75e (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;
}