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-698.cs
blob
e58d3db304102f7b763500ec650c582f00eaec25
1
// Compiler options: -unsafe
2
3
struct
Foo
4
{
5
public int
i
;
6
}
7
8
public unsafe class
test
9
{
10
static
Foo
*
pFoo
;
11
12
public static void
Main
()
13
{
14
int
*
pi
= &
pFoo
->
i
;
15
}
16
}