using System;
public class Program
{
public static void Main()
Action<string> derived = (string s) => Console.WriteLine(s);
Action<object> @base = derived;
}