[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0039.cs
blobe41330bb03941d3e2e23faa08c05fe889c3eaff2
1 // CS0039: 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;