blob: 264a976898343f405cae894f21712f64d9148050 (
plain)
1
2
3
4
5
6
7
8
|
// CS0452: The type `int' must be a reference type in order to use it as type parameter `T' in the generic type or method `C<T>'
// Line: 10
public class C<T> where T : class
{
}
delegate void D (C<int> arg);
|