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
Merge pull request #4202 from marek-safar/compression
[mono-project.git]
/
mcs
/
tests
/
test-380.cs
blob
23c34d049abd8916ab02584d263b831c9f275452
1
// Compiler options: -unsafe
2
3
class
T
{
4
static unsafe public int
Main
() {
5
int
*
a
=
null
;
6
int
**
b
= &
a
;
7
if
(*
b
==
null
)
8
return
0
;
9
return
1
;
10
}
11
}