[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0411-20.cs
blob2a92cd0001d88acd16a518b856c0547be503cccc
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: 14
4 using System;
6 class C
8 static void Foo<T> (Func<T> a)
12 static void Main ()
14 Foo (() => Main);