]> git.lizzy.rs Git - rust.git/blob - src/test/ui/span/issue-71363.stderr
Ensure source file present when calculating max line number
[rust.git] / src / test / ui / span / issue-71363.stderr
1 error[E0277]: `MyError` doesn't implement `std::fmt::Display`
2  --> $DIR/issue-71363.rs:6:6
3   |
4 6 | impl std::error::Error for MyError {}
5   |      ^^^^^^^^^^^^^^^^^ `MyError` cannot be formatted with the default formatter
6   |
7   = help: the trait `std::fmt::Display` is not implemented for `MyError`
8   = note: in format strings you may be able to use `{:?}` (or {:#?} for pretty-print) instead
9 note: required by a bound in `std::error::Error`
10
11 error[E0277]: `MyError` doesn't implement `Debug`
12  --> $DIR/issue-71363.rs:6:6
13   |
14 6 | impl std::error::Error for MyError {}
15   |      ^^^^^^^^^^^^^^^^^ `MyError` cannot be formatted using `{:?}`
16   |
17   = help: the trait `Debug` is not implemented for `MyError`
18   = note: add `#[derive(Debug)]` to `MyError` or manually `impl Debug for MyError`
19 note: required by a bound in `std::error::Error`
20 help: consider annotating `MyError` with `#[derive(Debug)]`
21   |
22 5 | #[derive(Debug)]
23   |
24
25 error: aborting due to 2 previous errors
26
27 For more information about this error, try `rustc --explain E0277`.