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

gtest-362.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 63ea5148fc3fde9b611f8b3ff8d5b7b37b499a3f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
class C
{
	static void Assert<T> (T a)
	{
	}

	static void Assert<T> (T a, T b)
	{
	}
	
	public static int Main ()
	{
		Assert (new object [,] { { 1, 2 }, { "x", "z" } });
		Assert (new object (), "a");
		
		return 0;
	}
}