mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-04 13:27:38 +03:00
Extend no-display ui test to cover another fmt trait
This commit is contained in:
parent
a061beb9dc
commit
6a6132d79b
2 changed files with 32 additions and 0 deletions
|
@ -9,4 +9,10 @@ pub struct Error {
|
|||
thread: NoDisplay,
|
||||
}
|
||||
|
||||
#[derive(Error, Debug)]
|
||||
#[error("thread: {thread:o}")]
|
||||
pub struct ErrorOctal {
|
||||
thread: NoDisplay,
|
||||
}
|
||||
|
||||
fn main() {}
|
||||
|
|
|
@ -18,3 +18,29 @@ note: the trait `std::fmt::Display` must be implemented
|
|||
= help: items from traits can only be used if the trait is implemented and in scope
|
||||
= note: the following trait defines an item `as_display`, perhaps you need to implement it:
|
||||
candidate #1: `AsDisplay`
|
||||
|
||||
error[E0277]: the trait bound `NoDisplay: Octal` is not satisfied
|
||||
--> tests/ui/no-display.rs:13:9
|
||||
|
|
||||
12 | #[derive(Error, Debug)]
|
||||
| ----- in this derive macro expansion
|
||||
13 | #[error("thread: {thread:o}")]
|
||||
| ^^^^^^^^^^^^^^^^^^^^ the trait `Octal` is not implemented for `NoDisplay`
|
||||
|
|
||||
= help: the following other types implement trait `Octal`:
|
||||
&T
|
||||
&mut T
|
||||
NonZero<T>
|
||||
Saturating<T>
|
||||
Var<'a, T>
|
||||
Wrapping<T>
|
||||
i128
|
||||
i16
|
||||
and $N others
|
||||
= note: required for `Var<'_, NoDisplay>` to implement `Octal`
|
||||
note: required by a bound in `core::fmt::rt::Argument::<'_>::new_octal`
|
||||
--> $RUST/core/src/fmt/rt.rs
|
||||
|
|
||||
| pub fn new_octal<T: Octal>(x: &T) -> Argument<'_> {
|
||||
| ^^^^^ required by this bound in `Argument::<'_>::new_octal`
|
||||
= note: this error originates in the macro `$crate::format_args` which comes from the expansion of the derive macro `Error` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue