Merge pull request #2720 from mono/fix-39325
[mono.git] / mono / tests / verifier / unverifiable_void_ptr_store_2.cs
1 using System;
2
3 public unsafe class Driver {
4         static int foo;
5         public static int Main (string[] args) {
6                 void * test = (void*)foo;
7                 return 1;
8         }
9 }