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
[bcl] Update BCL Linked Size
[mono-project.git]
/
mcs
/
errors
/
cs0214-14.cs
blob
a8d563c0ae5b20e3c3337beba752a6fc89a8ace2
1
// CS0214: Pointers and fixed size buffers may only be used in an unsafe context
2
// Line: 11
3
// Compiler options: -unsafe
4
5
public class
C
6
{
7
unsafe int
*
i
;
8
9
public static void
Main
()
10
{
11
var
v
=
new
C
().
i
;
12
}
13
}