2008-02-19 Marek Safar <marek.safar@gmail.com>
[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\r
2 // Line: 7\r
3 \r
4 class X {\r
5         void A ()\r
6         {\r
7                 decimal d = -2.0;\r
8         }\r
9 }\r