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

gtest-357.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dac6c5f3e6244b05ce9ccc359d3cd78feca9b3a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class C <T> where T : new ()
{
}

class D <U> : C<U> where U : struct
{
}

class X
{
	static void Main ()
        {
        }
}