Files
rust/tests/ui/path_buf_push_overwrite.rs

8 lines
113 B
Rust
Raw Normal View History

2019-04-13 13:47:46 -03:00
// run-rustfix
use std::path::PathBuf;
fn main() {
let mut x = PathBuf::from("/foo");
x.push("/bar");
}