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
2007-03-28 Chris Toshok <toshok@ximian.com>
[mono-project.git]
/
mcs
/
errors
/
cs0642-4.cs
blob
4025f6bac3507bb0fa4e1e02e571ce188d759941
1
// cs0642-4.cs: Possible mistaken empty statement
2
// Line: 9
3
// Compiler options: -warnaserror -warn:3
4
5
public class
C
6
{
7
public void
Test
(
System
.
Collections
.
IEnumerable e
)
8
{
9
foreach
(
object
o
in
e
);
10
{ }
11
}
12
}
13