[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0266-8.cs
blobcfb7799ee52e74078e5a3549757338c436c03cec
1 // CS0266: Cannot implicitly convert type `void*' to `int*'. An explicit conversion exists (are you missing a cast?)
2 // Line: 7
3 // Compiler options: -unsafe
5 unsafe class MainClass {
6 static void *pv = null;
7 static int *pi = pv;
8 public static void Main () { }