]> git.lizzy.rs Git - rust.git/blob - tests/ui/suggestions/path-display.stderr
Rollup merge of #106670 - albertlarsan68:check-docs-in-pr-ci, r=Mark-Simulacrum
[rust.git] / tests / 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` which comes from the expansion of the macro `println` (in Nightly builds, run with -Z macro-backtrace for more info)
10
11 error[E0277]: `PathBuf` doesn't implement `std::fmt::Display`
12   --> $DIR/path-display.rs:9:20
13    |
14 LL |     println!("{}", path);
15    |                    ^^^^ `PathBuf` cannot be formatted with the default formatter; call `.display()` on it
16    |
17    = help: the trait `std::fmt::Display` is not implemented for `PathBuf`
18    = note: call `.display()` or `.to_string_lossy()` to safely print paths, as they may contain non-Unicode data
19    = note: this error originates in the macro `$crate::format_args_nl` which comes from the expansion of the macro `println` (in Nightly builds, run with -Z macro-backtrace for more info)
20
21 error: aborting due to 2 previous errors
22
23 For more information about this error, try `rustc --explain E0277`.