10 lines
242 B
C#
Raw Normal View History

using foo = System.Collections;
class X : foo::IEnumerable {
System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator () { return null; }
public static void Main ()
{
System.Collections.IEnumerable x = new X ();
}
}