using System; using System.Collections.Generic; public class Wrap { public List t; } public class Test { public int Run (Wrap t) { Action f = () => { t.t = new List (); }; f (); return t.t != null ? 0 : 1; } public static int Main () { return new Test ().Run (new Wrap ()); } }