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: 4a70dc6dda429763787d7c59011b49f108409746 (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
{
	public static void Main ()
        {
        }
}