**** Merged from MCS ****
[mono-project.git] / mcs / errors / cs0039.cs
blob494fe68f95698645eb97e51bf18f336ba273b3bb
1 // cs0039.cs: as operator can not convert explicitly from type to type
2 // line: 8
3 class A {
4 public static void Main ()
6 decimal tryDec;
7 tryDec = 1234.2345M;
9 object a = tryDec as string;