a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
23 lines
332 B
C#
23 lines
332 B
C#
using System;
|
|
using SCG = System.Collections.Generic;
|
|
|
|
public interface ISorted<S>
|
|
{
|
|
void AddSorted<T> (SCG.IEnumerable<T> items)
|
|
where T : S;
|
|
}
|
|
|
|
public class SortedIndexedTester<T>
|
|
{
|
|
public void Test (ISorted<int> sorted)
|
|
{
|
|
sorted.AddSorted (new int[] { 31, 62, 63, 93 });
|
|
}
|
|
}
|
|
|
|
class X
|
|
{
|
|
public static void Main ()
|
|
{ }
|
|
}
|