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

gtest-506.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f5529ba9bac839f4c4493e639c8aa722b9175b30 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
public struct SchemaEntry<T>
{
	public static SchemaEntry<T> Zero;
}

public class C
{
	public static void Main ()
	{
		new SchemaEntry<short> ();
	}
}