* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / errors / cs0039.cs
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 ()
5         {
6                 decimal tryDec;
7                 tryDec = 1234.2345M;
8
9                 object a = tryDec as string;
10         }
11 }
12
13
14
15
16