using System;
public class Program
{
public static void Main()
Action<int> test = (val) => Console.WriteLine("I am " + val);
Action<object> test2 = (Action<object>) test;
}