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

gtest-440.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4b971b6eee911f0c72a4a117386298c4c5b09a2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
public interface I<X>
{
}

public abstract class AnyObjectId : I<ObjectId>
{
	public int W1 { get; set; }
}

public class ObjectId : AnyObjectId
{
	ObjectId ()
	{
		W1 = 1;
	}

	public static void Main ()
	{
	}
}