Commit graph

772 commits

Author SHA1 Message Date
David Tolnay
ba9af4522e
Implement #[error(fmt = ...)] 2024-11-05 17:22:27 -05:00
David Tolnay
5e4b7a5117
Merge pull request #366 from dtolnay/transparentvariant
Allow error(transparent) inside an enum that has error("...")
2024-11-05 17:06:38 -05:00
David Tolnay
65f1990265
Allow error(transparent) inside an enum that has error("...") 2024-11-05 17:02:49 -05:00
David Tolnay
71adf02435
Add test of transparent variant in enum with format args
error: cannot have both #[error(transparent)] and a display attribute
      --> tests/test_transparent.rs:51:5
       |
    51 |     #[error("this failed: {0}_{1}")]
       |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2024-11-05 17:02:35 -05:00
David Tolnay
02aaafc783
Merge pull request #365 from dtolnay/attrspan
Delete Attrs::span in favor of just call_site()
2024-11-05 16:18:13 -05:00
David Tolnay
7a72593ee3
Delete Attrs::span in favor of just call_site() 2024-11-05 16:14:45 -05:00
David Tolnay
a74ec44362
Merge pull request #364 from dtolnay/collidefrom
Let rustc generate diagnostic for colliding From impls
2024-11-05 00:22:45 -05:00
David Tolnay
6cac4c078e
Set span of generated From impls 2024-11-05 00:20:02 -05:00
David Tolnay
7ca67b01f3
Let rustc generate diagnostic for colliding From impls 2024-11-05 00:19:43 -05:00
David Tolnay
b7f7bfdd40
Merge pull request #363 from dtolnay/joinspan
Try joining a span for #[source] and #[from]
2024-11-05 00:17:58 -05:00
David Tolnay
b49f647299
Try joining a span for #[source] and #[from] 2024-11-05 00:14:46 -05:00
David Tolnay
8fcac53b1f
Merge pull request #362 from dtolnay/attrspans
Store span of #[source] and #[from] attribute
2024-11-05 00:14:40 -05:00
David Tolnay
5ffcf461e7
Store span of #[source] and #[from] attribute 2024-11-05 00:10:35 -05:00
David Tolnay
51fa992a70
Merge pull request #361 from dtolnay/samefrom
Add ui test of colliding From impls
2024-11-04 23:51:49 -05:00
David Tolnay
8b663dc3ea
Add ui test of colliding From impls 2024-11-04 23:47:27 -05:00
David Tolnay
1b898b8ed0
Merge pull request #360 from dtolnay/samemember
Remove same_member in favor of MemberUnraw's PartialEq impl
2024-11-04 23:33:45 -05:00
David Tolnay
9d7602e226
Remove same_member in favor of MemberUnraw's PartialEq impl 2024-11-04 23:31:14 -05:00
David Tolnay
3382a2a09c
Merge pull request #359 from dtolnay/recursion
Recognize infinite recursion caused by `{self}`
2024-11-04 22:35:18 -05:00
David Tolnay
6a0eb08569
Recognize infinite recursion caused by {self} 2024-11-04 22:28:23 -05:00
David Tolnay
e1fa5190b4
Merge pull request #358 from dtolnay/conflict
Further deconflict macro-generated format var names with user-provided ones
2024-11-04 22:11:33 -05:00
David Tolnay
e44fd92065
Further deconflict macro-generated format var names with user-provided ones 2024-11-04 22:09:13 -05:00
David Tolnay
8fa0147097
Merge pull request #357 from dtolnay/fmt
Rewrite fmt expansion to exactly preserve user-provided args
2024-11-04 22:08:36 -05:00
David Tolnay
bf6efce84d
Improve diagnostic on raw identifier in format string 2024-11-04 22:05:19 -05:00
David Tolnay
58cc36e69f
Improve diagnostic on {_} in format string 2024-11-04 22:04:59 -05:00
David Tolnay
4a79e0121e
Rewrite fmt expansion to exactly preserve user-provided args 2024-11-04 22:04:18 -05:00
David Tolnay
6590331353
Merge pull request #356 from dtolnay/numbered
Fix collision of numbered field references with user-written named arg
2024-11-04 21:21:25 -05:00
David Tolnay
f8fd1bf196
Fix collision of numbered field references with user-written named arg 2024-11-04 21:12:25 -05:00
David Tolnay
51ccdf18f5
Slightly cleaner implementation of has_trailing_comma 2024-11-04 20:48:22 -05:00
David Tolnay
b54f231ca8
Merge pull request #355 from dtolnay/tuplevariant
Improve error message to distinguish tuple struct vs tuple variant
2024-11-04 20:13:25 -05:00
David Tolnay
7e43dec573
Improve error message to distinguish tuple struct vs tuple variant 2024-11-04 20:11:01 -05:00
David Tolnay
93690a35d6
Merge pull request #354 from dtolnay/numbered
Disable numbered access to positional args on tuples
2024-11-04 20:06:28 -05:00
David Tolnay
3070b8b6c8
Work around rustc pre-1.74's possibly-uninitialized checker
error[E0381]: used binding `ahead` is possibly-uninitialized
       --> impl/src/fmt.rs:187:30
        |
    182 |         let ahead;
        |             ----- binding declared here but left uninitialized
    183 |         if *syn_full.get_or_insert_with(is_syn_full) && {
    184 |             ahead = input.fork();
        |             -----
        |             |
        |             binding initialized here in some conditions
        |             binding initialized here in some conditions
    ...
    187 |             input.advance_to(&ahead);
        |                              ^^^^^^ `ahead` used here but it is possibly-uninitialized
2024-11-04 20:00:51 -05:00
David Tolnay
d3b926132b
Disable numbered access to positional args on tuples 2024-11-04 20:00:31 -05:00
David Tolnay
43844c299b
Move msrv CI to a separate job 2024-11-04 19:53:41 -05:00
David Tolnay
b81fd86301
Merge pull request #353 from dtolnay/inferbound
Only apply inferred bounds if interpolation refers to field
2024-11-04 17:22:21 -05:00
David Tolnay
593317939c
Only apply inferred bounds if interpolation refers to field, not format var 2024-11-04 17:20:18 -05:00
David Tolnay
67faae44b4
Add regression test for issue 345
error[E0599]: `test_no_bound_on_named_fmt::Error<DebugOnly>` doesn't implement `std::fmt::Display`
       --> tests/test_generics.rs:173:22
        |
    168 |     struct Error<T> {
        |     --------------- method `to_string` not found for this struct because it doesn't satisfy `_: Display` or `_: ToString`
    ...
    173 |     assert_eq!(error.to_string(), "...");
        |                      ^^^^^^^^^ `test_no_bound_on_named_fmt::Error<DebugOnly>` cannot be formatted with the default formatter
        |
        = note: the following trait bounds were not satisfied:
                `test_no_bound_on_named_fmt::Error<DebugOnly>: std::fmt::Display`
                which is required by `test_no_bound_on_named_fmt::Error<DebugOnly>: ToString`
        = note: in format strings you may be able to use `{:?}` (or {:#?} for pretty-print) instead
    note: the trait `std::fmt::Display` must be implemented
       --> $RUSTUP_HOME/toolchains/nightly-aarch64-unknown-linux-gnu/lib/rustlib/src/rust/library/core/src/fmt/mod.rs:727:1
        |
    727 | pub trait Display {
        | ^^^^^^^^^^^^^^^^^
        = help: items from traits can only be used if the trait is implemented and in scope
        = note: the following trait defines an item `to_string`, perhaps you need to implement it:
                candidate #1: `ToString`
2024-11-04 17:14:17 -05:00
David Tolnay
66835117eb
Merge pull request #352 from dtolnay/member
Use IdentUnraw consistently when comparing Member
2024-11-04 17:13:59 -05:00
David Tolnay
e015360076
Rename MemberUnraw::member_span() to just span() 2024-11-04 17:12:08 -05:00
David Tolnay
9116fdb8ea
Use IdentUnraw consistently when comparing Member 2024-11-04 17:12:08 -05:00
David Tolnay
3d23842d35
Merge pull request #351 from dtolnay/rawbacktrace
Add test of r#Backtrace that is not std::backtrace::Backtrace
2024-11-04 16:41:17 -05:00
David Tolnay
ef191b1048
Merge pull request #350 from dtolnay/rawsource
Add test of r#source that is not Error::source
2024-11-04 16:38:31 -05:00
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
David Tolnay
b2df5d55ec
Add test of r#source that is not Error::source
Without r#source:

    error[E0599]: the method `as_dyn_error` exists for type `char`, but its trait bounds were not satisfied
      --> tests/test_source.rs:72:9
       |
    72 |         source: char,
       |         ^^^^^^ method cannot be called on `char` due to unsatisfied trait bounds
       |
       = note: the following trait bounds were not satisfied:
               `char: std::error::Error`
               which is required by `char: AsDynError<'_>`
2024-11-04 16:35:28 -05:00
David Tolnay
2e96c84b37
Merge pull request #349 from dtolnay/unraw
Add a type for representing raw-agnostic format vars
2024-11-04 16:01:26 -05:00
David Tolnay
78d6bd6fca
Add a type for representing raw-agnostic format vars 2024-11-04 15:52:16 -05:00
David Tolnay
2180b52fc1
Merge pull request #348 from dtolnay/takestr
Fix edge case of take_int and take_ident at end of string
2024-11-04 15:33:33 -05:00
David Tolnay
6ddeda270e
Fix edge case of take_int and take_ident at end of string 2024-11-04 15:28:49 -05:00
David Tolnay
3814afebf4
Stick to only string manipulation in take_ident 2024-11-04 15:25:27 -05:00
David Tolnay
36f43b9fc6
Merge pull request #347 from dtolnay/noraw
Delete support for raw identifiers inside format string
2024-11-04 15:23:36 -05:00