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

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

using System;

public class E
{
	public System.Collections.Generic.Dictionary<int, A.B<int>.C> F;
	public static void Main ()
	{
		var e = new E ();
		Console.WriteLine (e.F);
	}
}