repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
add comment
[mcs.git]
/
tests
/
test-423.cs
blob
f50fb72414ec7e62b57ae1827b5a593da50281c5
1
// Compiler options: -unsafe
2
3
unsafe class
Test
4
{
5
static void
lowLevelCall
(
int
*
pv
)
{ }
6
7
static void
Func
(
out int
i
)
8
{
9
fixed
(
int
*
pi
= &
i
)
10
lowLevelCall
(
pi
);
11
}
12
13
static void
Main
()
14
{
15
int
i
=
0
;
16
Func
(
out
i
);
17
}
18
}
19