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
[build] Fix warning (#4177)
[mono-project.git]
/
mcs
/
tests
/
gtest-019.cs
blob
b0903dea144f22e09c85acc43b11f542d6eb85ee
1
// A very simple generic interface
2
3
public interface
IEnumerator
<
T
> {
4
T Current { get; }
5
bool
MoveNext
();
6
void
Reset
();
7
}
8
9
class
X
10
{
11
public static void
Main
()
12
{ }
13
}