2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0039.cs
blobe55211d2f3c7d45bffe4fb1ab0771fc2bf48e46d
1 // cs0039.cs: Cannot convert type `decimal' to `string' via a built-in conversion
2 // Line: 8
3 class A {
4 public static void Main ()
6 decimal tryDec;
7 tryDec = 1234.2345M;
9 object a = tryDec as string;