Commit graph

212 commits

Author SHA1 Message Date
David Tolnay
9f27b766f5
Ignore elidable_lifetime_names pedantic clippy lint
warning: the following explicit lifetimes could be elided: 'a
     --> src/var.rs:5:6
      |
    5 | impl<'a, T: Pointer + ?Sized> Pointer for Var<'a, T> {
      |      ^^                                       ^^
      |
      = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#elidable_lifetime_names
      = note: `-W clippy::elidable-lifetime-names` implied by `-W clippy::pedantic`
      = help: to override `-W clippy::pedantic` add `#[allow(clippy::elidable_lifetime_names)]`
    help: elide the lifetimes
      |
    5 - impl<'a, T: Pointer + ?Sized> Pointer for Var<'a, T> {
    5 + impl<T: Pointer + ?Sized> Pointer for Var<'_, T> {
      |

    warning: the following explicit lifetimes could be elided: 'a
      --> tests/test_lints.rs:40:22
       |
    40 |     pub enum MyError<'a> {
       |                      ^^
       |
       = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#elidable_lifetime_names
       = note: `-W clippy::elidable-lifetime-names` implied by `-W clippy::pedantic`
       = help: to override `-W clippy::pedantic` add `#[allow(clippy::elidable_lifetime_names)]`
    help: elide the lifetimes
       |
    40 -     pub enum MyError<'a> {
    40 +     pub enum MyError'_> {
       |

    warning: the following explicit lifetimes could be elided: 'a
       --> tests/test_display.rs:157:14
        |
    157 |         impl<'a> Display for Msg<'a> {
        |              ^^                  ^^
        |
        = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#elidable_lifetime_names
        = note: `-W clippy::elidable-lifetime-names` implied by `-W clippy::pedantic`
        = help: to override `-W clippy::pedantic` add `#[allow(clippy::elidable_lifetime_names)]`
    help: elide the lifetimes
        |
    157 -         impl<'a> Display for Msg<'a> {
    157 +         impl Display for Msg<'_> {
        |
2025-03-02 19:56:43 -08:00
David Tolnay
1a226ae42c
Disable two more integration tests in no-std mode 2025-01-10 10:00:21 -08:00
David Tolnay
8b5f2d78f0
Fix unused import in test when built without std
warning: unused import: `std::path::PathBuf`
     --> tests/test_expr.rs:4:5
      |
    4 | use std::path::PathBuf;
      |     ^^^^^^^^^^^^^^^^^^
      |
      = note: `#[warn(unused_imports)]` on by default
2025-01-10 09:56:35 -08:00
Maytham Alsudany
693a6cddad
Add feature gate to tests that use std 2025-01-10 18:43:36 +08:00
David Tolnay
136859154b
Add regression test for issue 405
error[E0599]: the method `as_display` exists for reference `&<T as FromStr>::Err`, but its trait bounds were not satisfied
       --> tests/test_generics.rs:178:13
        |
    178 |     #[error("couldn't parse entry: {0}")]
        |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^ method cannot be called on `&<T as FromStr>::Err` due to unsatisfied trait bounds
        |
        = note: the following trait bounds were not satisfied:
                `<T as FromStr>::Err: std::fmt::Display`
                which is required by `&<T as FromStr>::Err: AsDisplay<'_>`
2025-01-08 11:43:18 -08:00
David Tolnay
c008375268
FIx typo in ui test 2024-12-21 10:20:21 -08:00
David Tolnay
6a07345135
Add regression test for issue 398
error[E0425]: cannot find value `_0` in this scope
       --> tests/test_display.rs:308:17
        |
    308 |         #[error("{0}")]
        |                 ^^^^^ not found in this scope

    error[E0425]: cannot find value `__display_x` in this scope
       --> tests/test_display.rs:310:17
        |
    310 |         #[error("{x}")]
        |                 ^^^^^ not found in this scope
2024-12-17 19:14:03 -08:00
Andres Suarez
100d9164f2 Avoid associating #[from] with lint allow 2024-12-13 14:06:02 -08:00
David Tolnay
caf585c978
Add test of deprecated type in From impl
error: use of deprecated struct `test_deprecated::DeprecatedStruct`
      --> tests/test_lints.rs:73:13
       |
    73 |             DeprecatedStruct,
       |             ^^^^^^^^^^^^^^^^
       |
    note: the lint level is defined here
      --> tests/test_lints.rs:39:13
       |
    39 |     #![deny(deprecated)]
       |             ^^^^^^^^^^
2024-12-08 10:36:57 -08:00
David Tolnay
07e7d990fa
Add "in this derive macro expansion" to missing Display errors 2024-12-07 08:58:16 -08:00
David Tolnay
714229d821
Work around deprecation warning on generated impl for deprecated type 2024-12-07 08:58:16 -08:00
David Tolnay
0ba7d01e8e
Add tests of deprecated error types
error: use of deprecated struct `test_deprecated::DeprecatedStruct`
      --> tests/test_lints.rs:44:16
       |
    44 |     pub struct DeprecatedStruct;
       |                ^^^^^^^^^^^^^^^^
       |
    note: the lint level is defined here
      --> tests/test_lints.rs:39:13
       |
    39 |     #![deny(deprecated)]
       |             ^^^^^^^^^^

    error: use of deprecated struct `test_deprecated::DeprecatedStruct`
      --> tests/test_lints.rs:44:16
       |
    44 |     pub struct DeprecatedStruct;
       |                ^^^^^^^^^^^^^^^^

    error: use of deprecated enum `test_deprecated::DeprecatedEnum`
      --> tests/test_lints.rs:55:14
       |
    55 |     pub enum DeprecatedEnum {
       |              ^^^^^^^^^^^^^^
2024-12-07 08:58:12 -08:00
David Tolnay
42b1460612
Standardize on 'Error, Debug' derive order 2024-12-07 08:48:24 -08:00
David Tolnay
2096b11bed
Fold test_deprecated into test_lints 2024-12-07 08:46:34 -08:00
Matthew Donoughe
aa19b7cfce
suppress needless_lifetimes lints from clippy 0.1.83 2024-12-03 08:40:10 -05:00
David Tolnay
ad2f20b9f7
Use ui test syntax that does not interfere with rustfmt 2024-11-10 23:51:28 -08:00
David Tolnay
1d040f358a
Use Var wrapper only for Pointer formatting 2024-11-10 13:11:21 -08:00
David Tolnay
6a6132d79b
Extend no-display ui test to cover another fmt trait 2024-11-10 13:08:53 -08:00
David Tolnay
520343e37d
Add test of Debug and Display of paths
DisplayDebug currently works but DebugDisplay does not.

    error[E0277]: `PathBuf` doesn't implement `std::fmt::Display`
      --> tests/test_path.rs:36:13
       |
    32 | #[derive(Error, Debug)]
       |          ----- in this derive macro expansion
    ...
    36 |     #[error("debug:{0:?} display:{0}")]
       |             ^^^^^^^^^^^^^^^^^^^^^^^^^ `PathBuf` cannot be formatted with the default formatter; call `.display()` on it
       |
       = help: the trait `std::fmt::Display` is not implemented for `PathBuf`
       = note: in format strings you may be able to use `{:?}` (or {:#?} for pretty-print) instead
       = note: call `.display()` or `.to_string_lossy()` to safely print paths, as they may contain non-Unicode data
       = help: the trait `std::fmt::Display` is implemented for `Var<'_, T>`
       = 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-10 12:57:31 -08:00
David Tolnay
2e43d26838 Release 1.0.69
-----BEGIN PGP SIGNATURE-----
 
 iQIzBAABCgAdFiEERijF2Cz/ZdaBZKeK+boUO5X/bYIFAmcwUXUACgkQ+boUO5X/
 bYLChBAAiO3silasUL5uxnLNwC3r9IaprdnBHRr69V/7UFGcAWQEN/JMxl+klN4p
 /4J8cIJmOFvdR7slB7tEtgkb3P4H4UlO9QGmKcHc86W6TXDztthC2b4eaXKEEPRN
 lYxs92iaHBuDSZR7DQ8NjhnPwLFlhoePFGrThNscy7e7e2Qtf2RP4pEeOQwTKIM5
 KlBlgpFK+81hP7SruhZHiYMBkA4vbQvwqoRTw+Xszi+olDdnqEntM+ySgfbpbl1H
 Gdp7C3+FhTRMSJLofNvEzBTWYv4coOZoDhkEJgXLdRhVomkFIHHMFYiaG6ldXp7n
 95hd8KXOfGF41oLmfuPkWDdXgZYlawale4a+g4W9P4Aa8ecW6fW15EvrrZEPtyt7
 fVApcMWWn8s174u4inaE2v5FY2gs2lOlxPCVvRUPB16R1T8XJhSHi4VWgKKSo/Jo
 gDDLvP+pSRHrC9qIlnkP0XuSK5GjVdymGalUlyUe9JAXmxP90m9jUBYH15WTrTjn
 qf0g4KYh6YgOYnUKU3qbYdkNlipjR5I/ISknBgDXcNipGdG1UdBRkGTbA2IquewV
 XD/SGhQ8az35pY4SYQRf3yS33DbNNCcBovBQe3u+phHhinGzils6A8ehK5NduxzL
 jyRJlq9mvE7+gkTzozKUkJFLLiT7RP9DtQy+yOlos9sHvJQTsI8=
 =OL7Q
 -----END PGP SIGNATURE-----
gpgsig -----BEGIN PGP SIGNATURE-----
 
 iQIzBAABCgAdFiEERijF2Cz/ZdaBZKeK+boUO5X/bYIFAmcwUicACgkQ+boUO5X/
 bYLv1A//bx+ux6KQd6+f8pAesRkXppDTtvSm0TNuMigFFBfXPE/JWlB995eOm1Wy
 LlECgl8hOEf4NF4eiqdgNiqa1n6sY8neqiMDjW4rwl4kaX8dDkBWVEX4Lym8Q3Xt
 9OcdiNQOdlVoimeFkizfjDEpYywaeleSNurQ1Id2P/VgWrhnaIRUymYzni+fS98H
 HCaAmlf+dfvyyiVNlikJAg/DrMCXKyiX4jVu8KZ6PHJvvfrbS/VXqrh9+tah1vxg
 u1DxChokNIllt0Fm+3laFYg/5WwSJuHdn1mJDkh1kWxmdryKIb4Y+dAx6Xp/6BKb
 YefRZGUlChrQzbhxTQ6F6GXZqMeV0JJKknYPQ7+Cm1kQDtYS7tCueiUWT/82ZFnD
 ETGKIFJuFxnV0YcX0cNCRGo/ZJW5rmnhIFMwYbIma4q9j7zg+Fwn9XHeXbdyX6lC
 99uB833bRah8VTL1n/kviLD12eYm7JbahFGluVlLEjFnDjI1oiCY4wNOEJ2let83
 CO4FGrA+JGa0DTp9e4zZjnG1ObxtgTVn2p5J6qwzsiczx2Bcw3GEEan254gMiDTo
 60w2+ZYYqZe8HWBBINTtUqDPHHfc1ZBIWQk8me7rJuMuH2fT8ihpoordc7YSa269
 taBtVxbQYRT3dIwf4LE7VOng+/IN6f7V6Y6aQZldR3t8cyugHYk=
 =6xu0
 -----END PGP SIGNATURE-----

Merge 1.x (1.0.69) into 2.x (master)
2024-11-09 22:26:47 -08:00
David Tolnay
591a44d9a3
Fix fallback fmt expression parser hang 2024-11-09 22:21:24 -08:00
David Tolnay
5b36e375c2
Add ui test of invalid expression syntax in display attribute 2024-11-09 22:16:01 -08:00
David Tolnay
46586dde23
Add test that {:p} prints the right address
thread 'test_pointer' panicked at tests/test_display.rs:265:5:
    assertion `left == right` failed
      left: "0x7fbbd7df10"
     right: "0x7fac000e30"
2024-11-08 13:25:50 -05:00
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
David Tolnay
8e8e27376c
Add test of dynamically sized error type
error[E0599]: the method `as_display` exists for reference `&str`, but its trait bounds were not satisfied
      --> tests/test_path.rs:26:9
       |
    26 | #[error("{tail}")]
       |         ^^^^^^^^ method cannot be called on `&str` due to unsatisfied trait bounds
       |
       = note: the following trait bounds were not satisfied:
               `str: Sized`
               which is required by `&str: AsDisplay<'_>`
2024-11-08 12:18:58 -05:00
David Tolnay
d8ed5fbc2f
Allow disabling std dependency on 1.81+ 2024-11-05 21:46:11 -05:00
David Tolnay
831138002b
Ignore trivially_copy_pass_by_ref pedantic clippy lint in test
warning: this argument (4 byte) is passed by reference, but would be more efficient if passed by value (limit: 8 byte)
       --> tests/test_display.rs:388:16
        |
    388 |     fn pair(k: &i32, v: &i32, formatter: &mut fmt::Formatter) -> fmt::Result {
        |                ^^^^ help: consider passing by value instead: `i32`
        |
        = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#trivially_copy_pass_by_ref
        = note: `-W clippy::trivially-copy-pass-by-ref` implied by `-W clippy::pedantic`
        = help: to override `-W clippy::pedantic` add `#[allow(clippy::trivially_copy_pass_by_ref)]`

    warning: this argument (4 byte) is passed by reference, but would be more efficient if passed by value (limit: 8 byte)
       --> tests/test_display.rs:388:25
        |
    388 |     fn pair(k: &i32, v: &i32, formatter: &mut fmt::Formatter) -> fmt::Result {
        |                         ^^^^ help: consider passing by value instead: `i32`
        |
        = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#trivially_copy_pass_by_ref
2024-11-05 17:35:14 -05:00
David Tolnay
ba9af4522e
Implement #[error(fmt = ...)] 2024-11-05 17:22:27 -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
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
b49f647299
Try joining a span for #[source] and #[from] 2024-11-05 00:14:46 -05:00
David Tolnay
8b663dc3ea
Add ui test of colliding From impls 2024-11-04 23:47:27 -05:00
David Tolnay
6a0eb08569
Recognize infinite recursion caused by {self} 2024-11-04 22:28:23 -05:00
David Tolnay
d3b926132b
Disable numbered access to positional args on tuples 2024-11-04 20:00:31 -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
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
1142834139
Add ui test of raw identifier in format string 2024-11-04 15:22:04 -05:00
David Tolnay
ef59afe2d4
Delete support for raw identifiers inside format string 2024-11-04 15:20:05 -05:00
David Tolnay
4d397bc186
Add test of underscore variable in format string 2024-11-04 15:15:44 -05:00
David Tolnay
6b48b090f8
Add test of non-rawable keyword in format string 2024-11-04 15:14:31 -05:00
David Tolnay
561e29eb80
Add regression test for issue 335
error[E0277]: `PathBuf` doesn't implement `std::fmt::Display`
       --> tests/test_expr.rs:105:14
        |
    104 |     #[derive(Error, Debug)]
        |              ----- in this derive macro expansion
    105 |     #[error("{A} {b}", b = &0 as &dyn Trait<i32, A = i32>)]
        |              ^^^ `PathBuf` cannot be formatted with the default formatter; call `.display()` on it
        |
        = help: the trait `std::fmt::Display` is not implemented for `PathBuf`
        = note: in format strings you may be able to use `{:?}` (or {:#?} for pretty-print) instead
        = note: call `.display()` or `.to_string_lossy()` to safely print paths, as they may contain non-Unicode data
        = 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-02 09:42:15 -07:00
David Tolnay
751dc63a8e
Track caller of the assertion helper in test_expr 2024-11-02 09:41:40 -07:00
David Tolnay
5d3edf9d7e
Improve error on malformed format attribute 2024-10-31 14:25:18 -07:00
David Tolnay
1b15d6e6a4
Ignore needless_lifetimes clippy lint
warning: the following explicit lifetimes could be elided: 'a
       --> tests/test_display.rs:152:14
        |
    152 |         impl<'a> Display for Msg<'a> {
        |              ^^                  ^^
        |
        = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
        = note: `-W clippy::needless-lifetimes` implied by `-W clippy::all`
        = help: to override `-W clippy::all` add `#[allow(clippy::needless_lifetimes)]`
    help: elide the lifetimes
        |
    152 -         impl<'a> Display for Msg<'a> {
    152 +         impl Display for Msg<'_> {
        |
2024-10-07 00:14:30 +02:00
David Tolnay
00b3c1405e
Work around new dead code warning in test
warning: struct `StructTransparentGeneric` is never constructed
       --> tests/test_generics.rs:161:12
        |
    161 | pub struct StructTransparentGeneric<E>(E);
        |            ^^^^^^^^^^^^^^^^^^^^^^^^
        |
        = note: `#[warn(dead_code)]` on by default
2024-07-31 12:25:52 -07:00
David Tolnay
f1ca210cc4
Add regression test for issue 309 2024-07-11 16:23:01 -07:00