New test.
[mono.git] / mcs / errors / cs0221-9.cs
1 // cs0221-9.cs: Constant value `3.402823E+38' cannot be converted to a `ulong' (use `unchecked' syntax to override)
2 // Line: 6
3
4 class X {
5         static void Main () {\r
6                 const float d = float.MaxValue;\r
7                 ulong b = (ulong) d;\r
8         }
9 }