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

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

class X {
	static void Main () {
		System.Console.WriteLine ((uint)double.PositiveInfinity);
	}
}