[loader] LoadFrom of problematic images should reprobe
[mono-project.git] / mcs / errors / cs0411-21.cs
blob90706423a2cf3f7878c64843175416ff64da0e21
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 class C
8 static void Main ()
10 Foo (() => () => 1);
13 static void Foo<T> (Func<T> arg)