using System;
public class Program
{
public static void Main()
Test<int>(IntMethod, IntMethod);
Test<int>(x => { }, x => { });
}
private static void IntMethod(int x) { }
public static void Test<T>(Action<T> a, Action<T> b) => Console.WriteLine(a == b);