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-06-26 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
errors
/
cs0210-2.cs
blob
962f7f2d27a785dd6eccbc4db1b2ad808222b44c
1
// cs0210.cs: You must provide an initializer in a fixed or using statement declaration
2
// Line: 7
3
// Compiler options: -unsafe
4
5
public class
MainClass
{
6
unsafe static void
Main
() {
7
fixed
(
int
*
p
) {
8
}
9
}
10
}
11