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

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

[AttributeUsage(AttributeTargets.GenericParameter)]
class GenParAttribute : Attribute
{
}

class cons <[GenPar] A, [GenPar] B>
{
	public void abc <[GenPar] M> ()
	{
	}
}

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