]> git.lizzy.rs Git - rust.git/blob - src/test/ui/suggestions/path-display.rs
Rollup merge of #90420 - GuillaumeGomez:rustdoc-internals-feature, r=camelid
[rust.git] / src / test / ui / suggestions / path-display.rs
1 use std::path::Path;
2
3 fn main() {
4     let path = Path::new("/tmp/foo/bar.txt");
5     println!("{}", path);
6     //~^ ERROR E0277
7 }