using System;
public class Main
{
public static void Main()
{
MyList<string> strings = new MyList<string>();
MyList<object> objects = new MyList<object>();
objects = strings;
objects.set(1);
}
}
public class MyList<T> {
public void set(T t){}
}