Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

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 ()
{ }
}