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
2009-11-17 Marek Safar <marek.safar@gmail.com>
[mcs.git]
/
errors
/
cs0214-3.cs
blob
371a312095404f9409da946575adbf41afe65b26
1
// cs0214-3.cs: Pointers and fixed size buffers may only be used in an unsafe context
2
// Line: 13
3
// Compiler options: -unsafe
4
5
struct
X
{
6
static unsafe void
*
a
()
7
{
8
return null
;
9
}
10
11
static void
Main
()
12
{
13
a
();
14
}
15
16
}