thiserror/tests
David Tolnay 9709257b59
Add test of r#Backtrace that is not std::backtrace::Backtrace
Without r#Backtrace:

    error[E0308]: mismatched types
       --> tests/test_backtrace.rs:42:14
        |
    42  |     #[derive(Error, Debug)]
        |              ^^^^^
        |              |
        |              expected `std::backtrace::Backtrace`, found `not_backtrace::Backtrace`
        |              arguments to this method are incorrect
        |
        = note: `not_backtrace::Backtrace` and `std::backtrace::Backtrace` have similar names, but are actually distinct types
    note: `not_backtrace::Backtrace` is defined in the current crate
       --> tests/test_backtrace.rs:26:9
        |
    26  |         pub struct Backtrace;
        |         ^^^^^^^^^^^^^^^^^^^^
    note: `std::backtrace::Backtrace` is defined in crate `std`
       --> $RUSTUP_HOME/toolchains/nightly-aarch64-unknown-linux-gnu/lib/rustlib/src/rust/library/std/src/backtrace.rs:108:1
        |
    108 | pub struct Backtrace {
        | ^^^^^^^^^^^^^^^^^^^^
    note: method defined here
       --> $RUSTUP_HOME/toolchains/nightly-aarch64-unknown-linux-gnu/lib/rustlib/src/rust/library/core/src/error.rs:607:12
        |
    607 |     pub fn provide_ref<T: ?Sized + 'static>(&mut self, value: &'a T) -> &mut Self {
        |            ^^^^^^^^^^^
        = note: this error originates in the derive macro `Error` (in Nightly builds, run with -Z macro-backtrace for more info)
2024-11-04 16:36:07 -05:00
..
ui Improve error on malformed format attribute 2024-10-31 14:25:18 -07: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 needless_lifetimes clippy lint 2024-10-07 00:14:30 +02: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 Work around new dead code warning in test 2024-07-31 12:25:52 -07: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 use core::fmt instead of std::fmt 2024-05-17 15:34:04 +02: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 Remove clippy deny attributes from test suite 2022-04-24 15:22:58 -07:00