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-01-31 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
errors
/
cs1579.cs
blob
16105549990fdee051d9ab9a53fc934376e0e2ee
1
// cs1579.cs: foreach statement cannot operate on variables of type `X' because it does not contain a definition for `GetEnumerator' or is not accessible
2
// Line: 10
3
class
X
{
4
}
5
6
class
Y
{
7
void
yy
(
X b
)
8
{
9
10
foreach
(
object
a
in
b
)
11
;
12
}
13
}