summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0452-6.cs
blob: 3a7b4fdf5d2f7a6378eca800ade4a95bc7944292 (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 C<int> D ();