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

test-436.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 19130d7ca0e342f939fa7c4f3d13cd428a8b1217 (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; }
	static void Main ()
	{
		System.Collections.IEnumerable x = new X ();
	}
}