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
Make csproj target work again
[mcs.git]
/
errors
/
cs0214-12.cs
blob
5d328aa46ad8661ff083cafd7c650cda4049dadc
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
}