]> git.proxmox.com Git - rustc.git/blob - src/test/ui/suggestions/path-display.stderr
New upstream version 1.48.0~beta.8+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
6 |
7 = help: the trait `std::fmt::Display` is not implemented for `Path`
8 = note: in format strings you may be able to use `{:?}` (or {:#?} for pretty-print) instead
9 = note: required because of the requirements on the impl of `std::fmt::Display` for `&Path`
10 = note: required by `std::fmt::Display::fmt`
11 = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
12
13 error: aborting due to previous error
14
15 For more information about this error, try `rustc --explain E0277`.