public static int Main() { var a = new StructWithObj { Obj = new object() }; var c = new StructWithObj { Obj = new object() }; return(Problem(a, c).Obj == c.Obj ? 100 : 101); }
private static StructWithObj Problem(StructWithObj a, StructWithObj c) { StructWithObj b = a;