mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
cb77f12600
Co-authored-by: Fridtjof Stoldt <xFrednet@gmail.com>
8 lines
179 B
Rust
8 lines
179 B
Rust
use std::path::PathBuf;
|
|
|
|
#[warn(clippy::path_buf_push_overwrite)]
|
|
#[allow(clippy::pathbuf_init_then_push)]
|
|
fn main() {
|
|
let mut x = PathBuf::from("/foo");
|
|
x.push("bar");
|
|
}
|