codeowners update
[mono.git] / mcs / tests / gtest-partial-03.cs
1 using System.Collections.Generic;
2
3 class Variable
4 {
5 }
6
7 internal partial class Test<T>
8 {
9 }
10
11 internal partial class Test<T> where T : IList<Variable>
12 {
13         public Test (T t)
14         {
15                 var val = t.Count;
16         }
17 }
18
19 internal partial class Test<T>
20 {
21 }
22
23 class CC
24 {
25         public static void Main ()
26         {
27                 new Test<List<Variable>> (new List<Variable> ());
28         }
29 }