[metadata] Fix leaks when handling a few attributes (#16675)
[mono-project.git] / mcs / tests / gtest-251.cs
blob57d07564960634aa38ed6073281aff18f9dd01eb
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 public static void Main ()
21 { }