mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-18 13:15:46 +00:00
Use Box::new() instead of box syntax in library tests The tests inside `library/*` have no reason to use `box` syntax as they have 0 performance relevance. Therefore, we can safely remove them (instead of having to use alternatives like the one in #97293).