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

gtest-088.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 94eaa875c5aaff4af8247d18bdb9f53b5eeb1234 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using System;

public struct KeyValuePair<K,V>
{
	public KeyValuePair (K k, V v)
	{ }

	public KeyValuePair (K k)
	{ }
}

class X
{
	public static void Main ()
	{
		new KeyValuePair<int,long> ();
	}
}