[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0594-4.cs
1 // CS0594: Floating-point constant is outside the range of type `float'
2 // Line: 6
3
4 class X {
5         public static void Main() {
6                 float b = 11111111111111111111111111111111111122222222222222222f;
7         }
8 }