[corlib] Simplify RuntimeInformation by getting OS name from the runtime (#13164)
[mono-project.git] / mcs / errors / cs0452-6.cs
blob3a7b4fdf5d2f7a6378eca800ade4a95bc7944292
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
4 public class C<T> where T : class
8 delegate C<int> D ();