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

test-936.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ae5af06cee236bb6547ec3a1a7ae78319d88f90c (plain)
1
2
3
4
5
6
7
8
9
10
11
// Compiler options: -r:test-936-lib.dll

class X
{
	public static void Main ()
	{
		TypeWithIndexer a = new TypeWithIndexer ();
		var x = a[0];
		a[0] = x;
	}
}