2019-04-13 11:47:46 -05:00
|
|
|
use std::path::PathBuf;
|
|
|
|
|
2023-10-23 09:11:21 -05:00
|
|
|
#[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");
|
|
|
|
}
|