[amd64] Add XMM registers to MonoContext on linux
[mono.git] / mcs / errors / cs0221-6.cs
1 // CS0221: Constant value `NaN' cannot be converted to a `int' (use `unchecked' syntax to override)
2 // Line: 6
3
4 class X {
5         static void Main () {
6                 System.Console.WriteLine ((int)double.NaN);
7         }
8 }