Commit graph

72 commits

Author SHA1 Message Date
David Tolnay
5d3edf9d7e
Improve error on malformed format attribute 2024-10-31 14:25:18 -07:00
Robert Jördens
7b6e35b992 use core::fmt instead of std::fmt 2024-05-17 15:34:04 +02:00
David Tolnay
0717de3f50
Update ui test suite to nightly-2024-02-08 2024-02-07 21:13:02 -08:00
David Tolnay
c7c75470ec
Update ui test suite to nightly-2024-01-31 2024-01-30 22:18:29 -08:00
David Tolnay
b94add8c9b
Add ui test where fallback impl conflicts with handwritten Display 2023-12-15 14:18:41 -08:00
David Tolnay
1754825c24
Work around trivial bounds being unstable 2023-12-15 14:13:00 -08:00
David Tolnay
1567f40ec3
Try to remove "doesn't implement Debug" in fallback expansion 2023-12-15 14:12:59 -08:00
David Tolnay
d7e3bdd980
Fix redundant "Error doesn't implement Display" in fallback 2023-12-15 14:12:30 -08:00
David Tolnay
7e5ff62806
Emit an Error impl even in the presence of bad attributes 2023-12-15 14:12:13 -08:00
David Tolnay
b010e52359
Add test looking for invalid input to still generate an impl 2023-12-15 12:13:36 -08:00
David Tolnay
abb651db3e
Regenerate missing-display.stderr using modern trybuild 2023-12-15 10:47:33 -08:00
David Tolnay
88edb2b0df
Update to nightly-2023-01-14 2023-12-15 10:47:33 -08:00
David Tolnay
cf0c5a85c3
Update to nightly-2022-12-12 2023-12-15 10:47:33 -08:00
David Tolnay
e7ab6fbd4c
Update to nightly-2022-08-24 2023-12-15 10:47:33 -08:00
David Tolnay
2fe64972de
Update to nightly-2021-08-18 2023-12-15 10:47:33 -08:00
David Tolnay
34e4333af7
Update to nightly-2020-07-29 2023-12-15 10:47:33 -08:00
David Tolnay
65f7773cca
Update to nightly-2020-04-20 2023-12-15 10:47:33 -08:00
David Tolnay
4fe306f5c3
Restore UI test involving missing Display impl
This test existed prior to 04b91d7646.

Since 791a98eb93, we can rely on rust-src being installed.
2023-12-15 10:47:29 -08:00
David Tolnay
ebebf77fe0
Format ui tests with rustfmt
`rustfmt tests/ui/*.rs`
2023-10-19 11:05:01 -07:00
Maarten de Vries
a49f7c603d Change span of as_dyn_error() to point compile error at attribute. 2023-10-19 17:09:30 +02:00
David Tolnay
bd640d10e6
Remove unsafe code from AsDisplay 2023-09-02 12:52:34 -07:00
Michal Nazarewicz
97eeb45b8b Replace DisplayAsDisplay and PathAsDisplay with AsDisplay trait
Rather than having separate traits implementing as_display method,
replace DisplayAsDisplay and PathAsDisplay traits with a AsDisplay
trait.  The difference between those two traits is in the result
returned by the as_display method.  With AsDisplay trait this is
captured by an associated type.

The main motivation for the change is making it simpler to support
no_std builds in the future.  Previously, PathAsDisplay would have to
be handled specially in such builds on the side of macro expansion.
Now, thiserror-impl doesn’t need to be aware of any complications
around AsDisplay since they are all contained in thiserror crate.
2023-09-01 04:59:43 +02:00
David Tolnay
5cc5855cd0
Revert "Ui tests with compile_error resolved at call site"
This reverts commit b534dafe3b.
2023-06-07 20:50:23 -07:00
David Tolnay
b534dafe3b
Ui tests with compile_error resolved at call site 2023-06-07 19:59:12 -07:00
David Tolnay
db78fa2cd8
Update ui test suite to nightly-2022-12-15 2022-12-14 18:29:48 -08:00
David Tolnay
29ee95ef47
Ui test changes for trybuild 1.0.66 2022-10-04 22:28:04 -07:00
David Tolnay
c79b023ce1
Update ui test suite to nightly-2022-09-25 2022-09-24 19:49:27 -07:00
David Tolnay
21198c9c0a
Move multiple-provide test into test_backtrace
Currently fails with:

    error[E0034]: multiple applicable items in scope
       --> tests/test_backtrace.rs:165:13
        |
    165 |             x: std::io::Error,
        |             ^ multiple `provide` found
        |
        = note: candidate #1 is defined in an impl of the trait `Provider` for the type `E`
        = note: candidate #2 is defined in an impl of the trait `std::error::Error` for the type `std::io::Error`
    help: disambiguate the associated function for candidate #1
        |
    165 |             Provider::provide(&x, Error): std::io::Error,
        |             ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    help: disambiguate the associated function for candidate #2
        |
    165 |             std::error::Error::provide(&x, Error): std::io::Error,
        |             ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2022-09-13 11:31:51 -07:00
David Tolnay
9e9afbff24
Add temporary ui test of 'multiple applicable items' error 2022-09-05 18:32:49 -07:00
David Tolnay
034c6ecf10
Update ui test suite to nightly-2022-08-24 2022-08-24 02:15:12 -07:00
David Tolnay
1442e27eaf
Remove stabilized feature(backtrace) from ui test 2022-08-10 21:18:11 -07:00
David Tolnay
0ac645e896
Update ui test suite to nightly-2022-08-11 2022-08-10 21:17:07 -07:00
David Tolnay
24db929a56
Update ui test suite to nightly-2022-07-10 2022-07-09 19:50:13 -07:00
David Tolnay
b338fe6ac1
Update ui test suite to nightly-2022-07-02 2022-07-01 19:30:59 -07:00
David Tolnay
e82ff362db
Update ui test suite to nightly-2022-06-26 2022-06-25 22:55:12 -07:00
David Tolnay
c4d7c2b135
Fix miscounting fields when from and backtrace are same field 2021-12-18 11:41:17 -08:00
David Tolnay
8602ca3dd2
Add ui test reproducing issue 163 2021-12-18 11:36:51 -08:00
David Tolnay
b743d8f4ee
Update ui test suite to nightly-2021-10-17 2021-10-16 19:20:11 -07:00
David Tolnay
00956f1f8c
Ui test changes for trybuild 1.0.49 2021-10-08 03:02:01 -04:00
David Tolnay
f072c626ef
Update ui test files 2021-10-07 00:32:11 -04:00
David Tolnay
791a98eb93
Update ui test suite to nightly-2021-10-07 2021-10-07 00:27:37 -04:00
David Tolnay
c610d97267
Update ui test suite to nightly-2021-05-14 2021-05-13 19:15:14 -07:00
David Tolnay
d0f521c208
Update ui test suite to nightly-2021-01-29 2021-01-28 18:37:39 -08:00
David Tolnay
d30890b4f7
Add ui test of Generic<&'a str> source 2020-12-26 17:33:51 -08:00
David Tolnay
d31d96bba2
Add justification to non-static lifetime diagnostic 2020-12-26 17:27:02 -08:00
David Tolnay
464a409608
Tweak placement of diagnostic on non-static lifetimes in source 2020-12-26 17:25:34 -08:00
David Tolnay
fbe9804476
Provide suggestion for anyone grepping for concat 2020-10-17 11:00:59 -07:00
David Tolnay
04d2e6c998
Pick up more specific string literal error message 2020-10-17 10:59:56 -07:00
David Tolnay
3ed6e38cc8
Add ui test of unexpected display expression 2020-10-17 10:37:43 -07:00
David Tolnay
04b91d7646
Change ui tests to work whether or not rust-src is installed 2020-09-04 23:39:02 -07:00