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
/
cs0446-2.cs
blob
0a1abc36eceaa4803bccac8070cd7ee01b9a3e20
1
// cs0446.cs: Foreach statement cannot operate on a `anonymous method'
2
// Line: 8
3
4
class
C
5
{
6
static void
M
()
7
{
8
foreach
(
int
i
in delegate
{ }
)
9
{
10
}
11
}
12
}