//ww:run-exit 3 package main; type S = struct { a: i64, sf: str }; let gp: *S = nil; export fn main() i32 = { let s: S = S{a=0,sf="abc"}; gp = &s; let x: str = gp.sf; return x.len: i32; };