thiserror/tests
David Tolnay fb8d3a7f44
Add test using generic type with multiple bounds
error[E0277]: the trait bound `T: UpperHex` is not satisfied
       --> tests/test_generics.rs:179:13
        |
    178 |     #[derive(Error, Debug)]
        |              ----- in this derive macro expansion
    179 |     #[error("0x{thing:x} 0x{thing:X}")]
        |             ^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `UpperHex` is not implemented for `T`
        |
        = note: required for `&T` to implement `UpperHex`
    note: required by a bound in `core::fmt::rt::Argument::<'_>::new_upper_hex`
       --> $RUSTUP_HOME/toolchains/nightly-aarch64-unknown-linux-gnu/lib/rustlib/src/rust/library/core/src/fmt/rt.rs:133:29
        |
    133 |     pub fn new_upper_hex<T: UpperHex>(x: &T) -> Argument<'_> {
        |                             ^^^^^^^^ required by this bound in `Argument::<'_>::new_upper_hex`
        = 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)
2024-11-08 12:44:59 -05:00
..
no-std Allow disabling std dependency on 1.81+ 2024-11-05 21:46:11 -05:00
ui Implement #[error(fmt = ...)] 2024-11-05 17:22:27 -05:00
compiletest.rs Fill in ignore reasons in all #[ignore] attributes 2024-06-01 22:16:16 -07:00
test_backtrace.rs Add test of r#Backtrace that is not std::backtrace::Backtrace 2024-11-04 16:36:07 -05:00
test_deprecated.rs Revert "Delete broken #[deprecated] test" 2022-08-30 19:14:00 -07:00
test_display.rs Ignore trivially_copy_pass_by_ref pedantic clippy lint in test 2024-11-05 17:35:14 -05:00
test_error.rs use core::fmt instead of std::fmt 2024-05-17 15:34:04 +02:00
test_expr.rs Add regression test for issue 335 2024-11-02 09:42:15 -07:00
test_from.rs Ignore extra_unused_type_parameters clippy lint in test 2023-02-10 19:17:59 -08:00
test_generics.rs Add test using generic type with multiple bounds 2024-11-08 12:44:59 -05:00
test_lints.rs Ignore mixed_attributes_style clippy lint 2024-03-07 22:31:43 -08:00
test_option.rs No need for dead code if struct fields are public 2024-06-07 19:38:42 -07:00
test_path.rs Add test of dynamically sized error type 2024-11-08 12:18:58 -05:00
test_source.rs Add test of r#source that is not Error::source 2024-11-04 16:35:28 -05:00
test_transparent.rs Add test of transparent variant in enum with format args 2024-11-05 17:02:35 -05:00