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

gtest-236.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 37acdefe68e281042feda27128585ff97bdb093f (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
26
27
28
29
30
using System;

class Foo<T>
{
	public int Test (Foo<T> foo)
	{
		return 1;
	}

	public int Test (Foo<int> foo)
	{
		return 2;
	}
}

class X
{
	public static int Main ()
	{
		Foo<long> foo = new Foo<long> ();
		Foo<int> bar = new Foo<int> ();
		if (foo.Test (foo) != 1)
			return 1;
		if (foo.Test (bar) != 2)
			return 2;
		if (bar.Test (bar) != 2)
			return 3;
		return 0;
	}
}