rust-clippy/tests/ui/path_buf_push_overwrite.fixed

9 lines
179 B
Rust
Raw Permalink Normal View History

2019-04-13 16:47:46 +00:00
use std::path::PathBuf;
#[warn(clippy::path_buf_push_overwrite)]
#[allow(clippy::pathbuf_init_then_push)]
2019-04-13 16:47:46 +00:00
fn main() {
let mut x = PathBuf::from("/foo");
x.push("bar");
}