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
Take stars out of types where they make more sense.
[mono-project.git]
/
mcs
/
tests
/
gtest-410.cs
blob
3d02271dab6075e77a0f4a326a9cff538871c268
1
// Compiler options: -unsafe
2
3
using
System
;
4
5
// Unsafe default expression, verifier checks IL
6
7
class
Program
8
{
9
public static void
Main
()
10
{
11
unsafe
{
12
int
*
a
= (
int
*)
null
;
13
ulong
*
o
=
default
(
ulong
*);
14
}
15
}
16
}