Added file cs0201.cs
[mono.git] / mcs / errors / cs0039.cs
1 // cs0039.cs: as operator can not convert explicitly from type to type
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