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
[metadata] Use MONO_PROFILER_API on MonoClass getters in checked builds (#20440)
[mono-project.git]
/
mcs
/
errors
/
cs0202.cs
blob
bd17dd913025f08807aad9896d5794a9a1fdaff9
1
// CS0202: foreach statement requires that the return type `Foo.E[]' of `Foo.P.GetEnumerator()' must have a suitable public MoveNext method and public Current property
2
// Line: 18
3
4
public class
Foo
5
{
6
public class
E
{}
7
8
public class
P
9
{
10
public
E
[]
GetEnumerator
()
11
{
12
return null
;
13
}
14
}
15
16
public static void
Main
()
17
{
18
P o
=
new
P
();
19
foreach
(
P p
in
o
)
20
{
21
}
22
}
23
}