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
[System.Data] Try to fix random DataViewTest.DefaultColumnNameAddListChangedTest...
[mono-project.git]
/
mcs
/
errors
/
cs0209.cs
blob
c1fd979d025ecdce2d5922943ea113063e518ae4
1
// CS0209: The type of locals declared in a fixed statement must be a pointer type
2
// Line: 9
3
// Compiler options: -unsafe
4
5
public class
A
6
{
7
unsafe static void
Main
()
8
{
9
fixed
(
string
s
=
null
)
10
{
11
}
12
}
13
}
14
15