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-670.cs
blob
cbed4ac6ddbd4c9297784446eb6ca62c177ed32a
1
// Compiler options: -unsafe
2
3
using
System
;
4
5
unsafe class
C
6
{
7
public static void
Main
()
8
{
9
int
x
=
5
;
10
int
*
a
= &(*(
x
+ (
int
*)
null
));
11
int
*
b
= &(*(
x
+ (
int
*)
1
));
12
}
13
}