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

gtest-237.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3ee1c78c957d5b66a080495fb44078c104b77753 (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 (T foo)
	{
		return 1;
	}

	public int Test (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 (4L) != 1)
			return 1;
		if (foo.Test (3) != 2)
			return 2;
		if (bar.Test (3) != 2)
			return 3;
		return 0;
	}
}