[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0029-39.cs
blob0ed200036dcd1cde44beefe7d0293520201897d2
1 // CS0029: Cannot implicitly convert type `S' to `object'
2 // Line: 13
3 // Compiler options: -langversion:latest
5 public ref struct S
9 class Test
11 public static void Main ()
13 object o = new S ();