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
2010-04-06 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0214-8.cs
blob
1ab65357b03876b6db933d2a36d5c2a49fc69f22
1
// cs0214-8.cs: Pointers and fixed size buffers may only be used in an unsafe context
2
// Line: 17
3
// Compiler options: -unsafe
4
5
public unsafe delegate void
Bar
(
int
*
x
);
6
7
class
X
8
{
9
public
X
(
Bar bar
)
10
{ }
11
12
unsafe static void
Test
(
int
*
b
)
13
{ }
14
15
static void
Main
()
16
{
17
X x
=
new
X
(
Test
);
18
}
19
}