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