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

class X {
	static void Main () {
		System.Console.WriteLine ((char)float.NaN);
	}
}