[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0452-11.cs
blobf0681aae7e7fc3a866b61f71e56d42c0b78f1bb9
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 `Program.M<T>(T, T)'
2 // Line: 8
4 class Program
6 public static void M<T> (T item1, T item2 = null) where T : class
8 M (1);