summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0221-7.cs
blob: 0ce1bb0cc8cba68e9b110453bcb414c2e27d42ce (plain)
1
2
3
4
5
6
7
8
// CS0221: Constant value `-Infinity' cannot be converted to a `ushort' (use `unchecked' syntax to override)
// Line: 6

class X {
	static void Main () {
		System.Console.WriteLine ((ushort)double.NegativeInfinity);
	}
}