[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0029-11.cs
blob962cab03f405350c5bbe9c305c4269697ccc1be2
1 // CS0029: Cannot implicitly convert type `int' to `string'
2 // Line: 5
4 class A {
5 public static implicit operator string (A a)
6 {
7 return 42;