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
2009-10-20 Jb Evain <jbevain@novell.com>
[mcs.git]
/
tests
/
test-672.cs
blob
9d8d5fb6c87a3e65fa2241eecdd706e890b26240
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
static void
Main
()
18
{
19
}
20
}
21