[mcs] C#7 out variable declaration
[mono.git] / mcs / errors / cs0221-9.cs
1 // CS0221: 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 () {
6                 const float d = float.MaxValue;
7                 ulong b = (ulong) d;
8         }
9 }