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

test-615.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8ff11370e6440c396351a64d399e2ff1d2772332 (plain)
1
2
3
4
5
6
7
8
9
10
11
class C
{
	public static void Main ()
	{
		const bool b = int.MinValue == 0x80000000;
		
		ulong res = 0;
		char c = 'c';
		res = res * 16 + c;		
	}
}