2010-04-07 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0664-3.cs
blob3eb26cf8c869d9260301c4b84e03894879232060
1 // cs0664-3.cs: Literal of type double cannot be implicitly converted to type `float'. Add suffix `f' to create a literal of this type
2 // Line: 13
4 using System;
6 public sealed class BoundAttribute : System.Attribute
8 public float D;
11 class C
13 [Bound (D = 300d)]
14 double d2;