blob: d8f742537d54fda1bc15633a92ad249e81a617b9 (
plain)
1
2
3
4
5
6
7
8
9
|
using foo = System.Collections;
class X : foo::IEnumerable {
foo::IEnumerator foo::IEnumerable.GetEnumerator () { return null; }
public static void Main ()
{
System.Collections.IEnumerable x = new X ();
}
}
|