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

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

public class Test
{
	public static void Main()
	{
		byte b = -1;
	}
}