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

test-441.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9b6fcef2ea4f3d0c01e5088cbb8b909518a9bd70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Compiler options: /warnaserror

using System;
class Test
{
	static ulong value = 0;

	public static void Main ()
	{
		if (value < 9223372036854775809)
			Console.WriteLine ();
	}
}