// CS0121: The call is ambiguous between the following methods or properties: `C.M(System.Func)' and `C.M(System.Action)' // Line: 18 using System; class C { static void M (Func arg) { } static void M (Action arg) { } static void Main() { M(l => l.GetHashCode()); } }