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
use MOONLIGHT symbol
[mcs.git]
/
tests
/
gtest-019.cs
blob
89bfba5004a94ac8440312aee07aabd7dd57c105
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
static void
Main
()
12
{ }
13
}