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
[mono/tests] Fix out of tree build.
[mono-project.git]
/
mcs
/
tests
/
test-247.cs
blob
bba0e071ffa7de08fa86604f88f8ad3538ddc3bf
1
using
System
;
2
using
System
.
Collections
;
3
4
struct
Blah
:
IEnumerable
{
5
IEnumerator IEnumerable
.
GetEnumerator
() {
6
return new
ArrayList
().
GetEnumerator
();
7
}
8
}
9
10
class
B
{
11
public static void
Main
() {
12
foreach
(
object
o
in new
Blah
())
13
;
14
}
15
}