[WinForms] Fix #18506 ActiveTracker, do not propagate message to control when it...
[mono-project.git] / mono / tests / verifier / unverifiable_void_ptr_store.cs
blob10308cd978d1e1dcbf12ece3cae3481d5a4ed354
1 using System;
3 public unsafe class Driver {
4 static int foo;
5 static void * bla;
6 public static int Main (string[] args) {
7 void * test = (void*)foo;
8 bla = test;
9 return 1;