2010-06-04 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0266-8.cs
blobf916e086017b0fc930c99041b4737074fcded697
1 // cs0266-8.cs: 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 () { }