mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
4171299632
See #4012.
9 lines
166 B
Rust
9 lines
166 B
Rust
// run-rustfix
|
|
use std::path::PathBuf;
|
|
|
|
#[warn(clippy::all, clippy::path_buf_push_overwrite)]
|
|
fn main() {
|
|
let mut x = PathBuf::from("/foo");
|
|
x.push("bar");
|
|
}
|