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
remove NotWorking
[mcs.git]
/
tests
/
test-anon-45.cs
blob
a3e73857cf3cf658a895c3bd7a7df4caa09bcec7
1
using
System
;
2
using
System
.
Collections
;
3
4
public class
Test
5
{
6
public static void
Main
()
7
{
8
foreach
(
object
o
in new
Test
())
9
Console
.
WriteLine
(
o
);
10
}
11
12
public
IEnumerator
GetEnumerator
()
13
{
14
int
i
=
2
;
15
yield return
3
;
16
}
17
}