//ww:run-exit 5 package main; type box = struct { s: str }; fn main() i32 = { let v: box; v.s = "hello"; let p: *box = &v; return (*p).s.len: i32; };