mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-27 02:53:43 +00:00
No need to take `ImplTraitContext` by ref We used to mutate `ImplTraitContext`, so it used to be `&mut` mutable ref. Then I think it used to have non-`Copy` data in it, so we took it by `&` ref. Now, none of that remains, so just copy it around.