summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0031-6.cs
blob: 1ad5834ad93483680d59e75e04c96005f5f830ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS0031: Constant value `999999999999999' cannot be converted to a `int'
// Line: 9

class X
{
	public static void Main ()
	{
		int i = 3;
		i += 999999999999999;
	}
}