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
2010-05-19 Jb Evain <jbevain@novell.com>
[mcs.git]
/
tests
/
test-435.cs
blob
b3cfb04caf60492bb71880aa915635813e5dabb6
1
using
foo
=
System
.
Collections
;
2
3
class
X
:
foo
::
IEnumerable
{
4
System
.
Collections
.
IEnumerator System
.
Collections
.
IEnumerable
.
GetEnumerator
()
{ return null; }
5
static void
Main
()
6
{
7
System
.
Collections
.
IEnumerable x
=
new
X
();
8
}
9
}