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
Merge pull request #2314 from lambdageek/dev/local-handles
[mono-project.git]
/
mcs
/
errors
/
cs0214-12.cs
blob
ef495c13da6edc85420d26165ebae0b7e5fca3b6
1
// CS0214: Pointers and fixed size buffers may only be used in an unsafe context
2
// Line: 13
3
// Compiler options: -unsafe
4
5
class
C
6
{
7
public static unsafe void
Write
(
params int
*[]
args
)
8
{
9
}
10
11
public static void
Main
()
12
{
13
Write
();
14
}
15
}