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

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

namespace ndynamic
{
	public class C<U> : List<dynamic>
	{
	}

	class C
	{
		public static void Main ()
		{
		}
	}
}