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

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

class Program
{
	class C
	{
	}

	void Foo<T> () where T : C
	{
	}

	public static int Main ()
	{
		return 0;
	}
}