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

gtest-501.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3303610da31a57769d08ae9c5f5a443d918e09e8 (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
31
public class UndoableDictionary<TKey, TValue> : UpdateableCollection<TValue>
{
	public override void TestFunc ()
	{
	}
}

public abstract class UpdateableCollection<T>
{
	internal void AddReferences ()
	{
	}

	public virtual void TestFunc ()
	{
	}

	class X : UndoableDictionary<int, int>
	{
	}

}

public class C
{
	public static int Main ()
	{
		new UndoableDictionary<string, decimal> ();
		return 0;
	}
}