module 0x8675309::M { struct S has copy, drop { f: u64, g: u64 } fun id(r: &T): &T { r } fun id_mut(r: &mut T): &mut T { r } fun t0(s: &mut S) { let f = &mut s.f; *s; *f; let f = id_mut(&mut s.f); *s; *f; } }