main
 1using System;
 2
 3namespace tests
 4{
 5    public class call
 6    {
 7        static public Action to(Action action)
 8        {
 9            return action;
10        }
11    }
12}