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-06-21 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git]
/
errors
/
cs0642-10.cs
blob
b6a01c29ef9dd894e5f4d2d8f93fcb100247d0d0
1
// cs0642-10.cs: Possible mistaken empty statement
2
// Line: 9
3
// Compiler options: -warnaserror -warn:3 -unsafe -nowarn:0219
4
5
public class
C
6
{
7
public unsafe void
Test
()
8
{
9
fixed
(
char
*
p
=
str
);
10
{ }
11
}
12
13
static readonly char
[]
str
=
new char
[]
{'A'}
;
14
}
15