rust/tests/ui/suggestions/path-display.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
238 B
Rust
Raw Normal View History

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