rust/tests/ui/path_buf_push_overwrite.rs

9 lines
180 B
Rust
Raw Normal View History

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