eol
[mcs.git] / tests / gtest-251.cs
blobbe977692803e025e9f4b8f1b5c80eeb7041b044f
1 using System;
2 using SCG = System.Collections.Generic;
4 public interface ISorted<S>
6 void AddSorted<T> (SCG.IEnumerable<T> items)
7 where T : S;
10 public class SortedIndexedTester<T>
12 public void Test (ISorted<int> sorted)
14 sorted.AddSorted (new int[] { 31, 62, 63, 93 });
18 class X
20 static void Main ()
21 { }