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

cs0031-3.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d8a8557d50b1fb75213fc564539adcd2fd2b9355 (plain)
1
2
3
4
5
6
7
8
9
10
// cs0031-3.cs: Constant value `-9' cannot be converted to a `uint'
// Line: 9

public class Test
{
	public static void Main()
	{
		uint b = -9;
	}
}