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