[interp] Fall back to old implementation when calling on proxy
[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 ();