rust/tests/ui/path_buf_push_overwrite.rs

9 lines
167 B
Rust
Raw Normal View History

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