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
/
gtest-410.cs
blob
9731ac3532924750deea7fb0ff97e1fe9902abd3
1
// Compiler options: -unsafe
2
3
using
System
;
4
5
// Unsafe default expression, verifier checks IL
6
7
class
Program
8
{
9
static void
Main
()
10
{
11
unsafe
{
12
int
*
a
= (
int
*)
null
;
13
ulong
*
o
=
default
(
ulong
*);
14
}
15
}
16
}