a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
32 lines
409 B
C#
32 lines
409 B
C#
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;
|
|
}
|
|
}
|