Files
rust/src/test/ui/suggestions/path-display.rs

8 lines
129 B
Rust
Raw Normal View History

use std::path::Path;
fn main() {
let path = Path::new("/tmp/foo/bar.txt");
println!("{}", path);
//~^ ERROR E0277
}