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
Warnings cleanup
[mcs.git]
/
errors
/
cs0214-7.cs
blob
db83ddb493ff23d045b225070caed0766763387b
1
// cs0214.cs: Pointers and fixed size buffers may only be used in an unsafe context
2
// Line: 6
3
// Compiler options: -unsafe
4
5
class
Test
6
{
7
public void
Main
()
8
{
9
byte
*
arr
=
stackalloc byte
[
4
];
10
}
11
}
12