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
Fixes the mono/tests/gc-graystack-stress test on Windows x64
[mono-project.git]
/
mcs
/
errors
/
cs0214-4.cs
blob
12e42e1235a53b67649d72f8c61d4b61f21de801
1
// CS0214: Pointers and fixed size buffers may only be used in an unsafe context
2
// Line: 8
3
// Compiler options: -unsafe
4
5
class
X
{
6
public void
a
()
7
{
8
void
*
p
;
9
}
10
11
static void
Main
() {}
12
}