a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
29 lines
333 B
C#
29 lines
333 B
C#
using System.Collections.Generic;
|
|
|
|
class Variable
|
|
{
|
|
}
|
|
|
|
internal partial class Test<T>
|
|
{
|
|
}
|
|
|
|
internal partial class Test<T> where T : IList<Variable>
|
|
{
|
|
public Test (T t)
|
|
{
|
|
var val = t.Count;
|
|
}
|
|
}
|
|
|
|
internal partial class Test<T>
|
|
{
|
|
}
|
|
|
|
class CC
|
|
{
|
|
public static void Main ()
|
|
{
|
|
new Test<List<Variable>> (new List<Variable> ());
|
|
}
|
|
} |