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

gtest-487.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 17b360a45ff9631587f35430c83fe9ae724bfcb6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using System;
using System.Collections.Generic;

namespace Limada.MonoTests.Generics
{
	public class MultiDictionary<K, V, TDictionary>
		where TDictionary : IDictionary<K, ICollection<V>>
	{ }

	public class Test
	{
		public static void Main ()
		{
			var c = new MultiDictionary<int, int, Dictionary<int, ICollection<int>>> ();
		}
	}
}