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

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

class C<T>
{
	public static int Foo;
}

class X
{
	public static void Main ()
	{
	}
	
	void Test<T> (T A)
	{
		A<T> ();
		
		object C;
		var c = C<int>.Foo;
	}
	
	static void A<U> ()
	{
	}
}