You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
let inner = unimplemented!();Item{kind: inner, ..unimplemented!()}
When I rename inner to kind, I expect this to turn into Item { kind, ..unimplemented!() }.
Instead, it turns into Item { kind: kind, ..unimplemented!() }, and I have to hit ctrl+. again to get the short-hand syntax.