[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0664-3.cs
1 // CS0664: Literal of type double cannot be implicitly converted to type `float'. Add suffix `f' to create a literal of this type
2 // Line: 13
3
4 using System;
5
6 public sealed class BoundAttribute : System.Attribute
7 {
8         public float D;
9 }
10
11 class C
12 {
13         [Bound (D = 300d)]
14         double d2;
15 }