]> git.proxmox.com Git - rustc.git/blob - src/test/ui/suggestions/path-display.stderr
New upstream version 1.55.0+dfsg1
[rustc.git] / src / test / ui / suggestions / path-display.stderr
1 error[E0277]: `Path` doesn't implement `std::fmt::Display`
2 --> $DIR/path-display.rs:5:20
3 |
4 LL | println!("{}", path);
5 | ^^^^ `Path` cannot be formatted with the default formatter; call `.display()` on it
6 |
7 = help: the trait `std::fmt::Display` is not implemented for `Path`
8 = note: call `.display()` or `.to_string_lossy()` to safely print paths, as they may contain non-Unicode data
9 = note: this error originates in the macro `$crate::format_args_nl` (in Nightly builds, run with -Z macro-backtrace for more info)
10
11 error: aborting due to previous error
12
13 For more information about this error, try `rustc --explain E0277`.