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
[Http]: Cosmetic, remove some dead code.
[mono-project.git]
/
mcs
/
errors
/
cs0210-2.cs
blob
590f2f382d3a1fb20596b866ea6cf5f9bd4a8f9d
1
// CS0210: 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