summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0221-8.cs
blob: 0bed9326fe9b26fed8de8e5ef46efd7958817426 (plain)
1
2
3
4
5
6
7
8
// CS0221: 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);
	}
}