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-380.cs
blob
1122b48f2d828fce6aa8d131b82b5565faded6f2
1
// Compiler options: -unsafe
2
3
class
T
{
4
static unsafe int
Main
() {
5
int
*
a
=
null
;
6
int
**
b
= &
a
;
7
if
(*
b
==
null
)
8
return
0
;
9
return
1
;
10
}
11
}