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

gcs0117.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d0387f5daf6944b54c060e8470c6e1c6b049ae58 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
class A<X>
{
	//
	// This is to test the lookup rules for SimpleNames:
	// `X' is the type parameter, not the class.
	//
	public void Test (X x)
	{
		x.Test ();
	}
}

class X
{
	public void Test ()
	{ }
}