Merge pull request #3769 from evincarofautumn/fix-verify-before-allocs
[mono.git] / mcs / errors / cs0664-4.cs
1 // CS0664: Literal of type double cannot be implicitly converted to type `decimal'. Add suffix `m' to create a literal of this type
2 // Line: 7
3
4 class X {
5         void A ()
6         {
7                 decimal d = -2.0;
8         }
9 }