Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-435.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 836eb62129f04e02237908ffca4ea32b1dcf7889 (plain)
1
2
3
4
5
6
7
8
9
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 ();
	}
}