[ilasm] Don't break arguments compatiblity
[mono-project.git] / mcs / tests / gtest-partial-03.cs
blob177fa4862ae1180f49d662a0e9b7624c899bd79f
1 using System.Collections.Generic;
3 class Variable
7 internal partial class Test<T>
11 internal partial class Test<T> where T : IList<Variable>
13 public Test (T t)
15 var val = t.Count;
19 internal partial class Test<T>
23 class CC
25 public static void Main ()
27 new Test<List<Variable>> (new List<Variable> ());