blob: 763008045e16771a66e735e3b9580b8017fb1bbe (
plain)
1
2
3
4
5
6
7
8
|
// CS0221: 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);
}
}
|