Merge pull request #4845 from lambdageek/dev-coop-delegates
[mono.git] / mcs / errors / cs0242-2.cs
1 // CS0242: The operation in question is undefined on void pointers
2 // Line: 10
3 // Compiler options: -unsafe
4
5 unsafe class C
6 {
7         public static void Main ()
8     {
9                 void* v = null;
10                 int b = *v is string;
11     }
12 }