[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0029-35.cs
blobc2330990f12104ccbd756153adc5b8d4c955ac99
1 // CS0029: Cannot implicitly convert type `string' to `int'
2 // Line: 10
3 // Compiler options: -unsafe
5 class TestClass
7 public unsafe static void Main ()
9 int* arr = null;
10 var i = arr["c"];