[sre] Wrap mono_image_create_token with HANDLE_FUNCTION_{ENTER,RETURN}
[mono-project.git] / mcs / errors / cs0411-25.cs
blobc7f92fb96d792d8ba2ef2e180ae1cdc58b5bd2fc
1 // CS0411: The type arguments for method `C.Foo<T>(System.Func<T>)' cannot be inferred from the usage. Try specifying the type arguments explicitly
2 // Line: 10
4 using System;
6 public class C
8 public static void Main ()
10 Foo (() => throw null);
13 static void Foo<T> (Func<T> arg)