]> git.lizzy.rs Git - rust.git/blob - src/test/ui/suggestions/path-display.stderr
Auto merge of #65129 - andjo403:cargo_args, r=alexcrichton
[rust.git] / src / test / ui / suggestions / path-display.stderr
1 error[E0277]: `std::path::Path` doesn't implement `std::fmt::Display`
2   --> $DIR/path-display.rs:5:20
3    |
4 LL |     println!("{}", path);
5    |                    ^^^^ `std::path::Path` cannot be formatted with the default formatter; call `.display()` on it
6    |
7    = help: the trait `std::fmt::Display` is not implemented for `std::path::Path`
8    = note: call `.display()` or `.to_string_lossy()` to safely print paths, as they may contain non-Unicode data
9    = note: required because of the requirements on the impl of `std::fmt::Display` for `&std::path::Path`
10    = note: required by `std::fmt::Display::fmt`
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0277`.