!752 sclass A { class B { A a() { ret A.this; } } } p { new A a; A.B b = a.new B; S s = structure(b); print(s); b = (A.B) unstructure(s); assertNotNull(b.a()); }