about summary refs log tree commit diff
path: root/src/test/ui/suggestions/path-display.rs
blob: 62fc9e79f7aa23537de36ec3ec1be43bb973f4ca (plain)
1
2
3
4
5
6
7
use std::path::Path;

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