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

cs0221-6.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fe89c22270943882648630eb30d22f786185d8df (plain)
1
2
3
4
5
6
7
8
// cs0221-6.cs: Constant value `NaN' cannot be converted to a `int' (use `unchecked' syntax to override)
// Line: 6

class X {
	static void Main () {
		System.Console.WriteLine ((int)double.NaN);
	}
}