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
add comment
[mcs.git]
/
tests
/
gtest-iter-04.cs
blob
377e1b14390d045c4f1b979bd40aa8e0a44c022d
1
using
System
;
2
using
System
.
Collections
.
Generic
;
3
4
public abstract class
TestClass
5
{
6
public abstract void
ToString
(
object
obj
);
7
8
public
IEnumerable
<
object
>
TestEnumerator
()
9
{
10
ToString
(
null
);
11
yield break
;
12
}
13
14
public void
Test
()
15
{
16
ToString
(
null
);
17
}
18
}
19
20
class
M
21
{
22
public static void
Main
()
23
{
24
}
25
}