[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0452-7.cs
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 `C<T>'
2 // Line: 10
3
4 public class C<T> where T : class
5 {
6 }
7
8 delegate void D (C<int> arg);