repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[WinForms] Fix #18506 ActiveTracker, do not propagate message to control when it...
[mono-project.git]
/
mono
/
tests
/
verifier
/
unverifiable_void_ptr_store.cs
blob
10308cd978d1e1dcbf12ece3cae3481d5a4ed354
1
using
System
;
2
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
;
10
}
11
}