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
[sdks] Fix README.md
[mono-project.git]
/
mcs
/
tests
/
test-672.cs
blob
b50c96180b4bf8295d72c31f65f6604ea916c7d0
1
// Compiler options: -unsafe
2
3
struct
S
4
{
5
}
6
7
class
X
8
{
9
unsafe int
*
Foo
{
10
get
{ return null; }
11
}
12
13
unsafe
S
*
Foo2
{
14
get
{ return null; }
15
}
16
17
public static void
Main
()
18
{
19
}
20
}
21