1 // CS0452: The type `int' must be a reference type in order to use it as type parameter `T' in the generic type or method `TestClass<T>'
5 public class TestClass
<T
> where T
: class
12 static public T Value
;
21 static public void Main()
23 int j
= TestClass
<int>.Value
;
24 Console
.WriteLine (j
);