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
2009-05-29 Steven Munroe <munroesj@us.ibm.com>
[mcs.git]
/
errors
/
cs0446.cs
blob
d9efd93382429913ad63b3b7a6192e51b417a9ac
1
// cs0446.cs: 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
}