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

gtest-variance-20.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0e399c9238fedf8dc26cf06b76904ca8b3b27564 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
[System.AttributeUsage (System.AttributeTargets.All)]
class DocAttribute : System.Attribute
{
	public DocAttribute (string name)
	{
	}
}

delegate TR Func<[Doc("b")] in T1, [Doc("a")] out TR>(T1 a);

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