mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-03 21:07:38 +03:00
12 commits
Author | SHA1 | Message | Date | |
---|---|---|---|---|
|
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<'_> { | |
||
|
100d9164f2 | Avoid associating #[from] with lint allow | ||
|
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)] | ^^^^^^^^^^ |
||
|
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 { | ^^^^^^^^^^^^^^ |
||
|
42b1460612
|
Standardize on 'Error, Debug' derive order | ||
|
2096b11bed
|
Fold test_deprecated into test_lints | ||
|
aa19b7cfce
|
suppress needless_lifetimes lints from clippy 0.1.83 | ||
|
f55a5d28da
|
Ignore mixed_attributes_style clippy lint
warning: item has both inner and outer attributes --> tests/test_lints.rs:5:1 | 5 | / #[test] 6 | | fn test_unused_qualifications() { 7 | | #![deny(unused_qualifications)] | |___________________________________^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#mixed_attributes_style = note: `#[warn(clippy::mixed_attributes_style)]` on by default |
||
|
e96e0d57d7
|
Revert "Ignore buggy nonstandard_macro_braces clippy lint"
This reverts commit
|
||
|
4bbe3ece51
|
Ignore buggy nonstandard_macro_braces clippy lint
Clippy bug: https://github.com/rust-lang/rust-clippy/issues/7422 error: use of irregular braces for `write!` macro --> tests/test_backtrace.rs:5:10 | 5 | #[derive(Error, Debug)] | ^^^^^ | = note: `-D clippy::nonstandard-macro-braces` implied by `-D clippy::all` help: consider writing `Error` --> tests/test_backtrace.rs:5:10 | 5 | #[derive(Error, Debug)] | ^^^^^ = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#nonstandard_macro_braces = note: this error originates in the derive macro `Error` (in Nightly builds, run with -Z macro-backtrace for more info) error: use of irregular braces for `write!` macro --> tests/test_lints.rs:13:21 | 13 | #[derive(Debug, Error)] | ^^^^^ | = note: `-D clippy::nonstandard-macro-braces` implied by `-D clippy::all` help: consider writing `Error` --> tests/test_lints.rs:13:21 | 13 | #[derive(Debug, Error)] | ^^^^^ = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#nonstandard_macro_braces = note: this error originates in the derive macro `Error` (in Nightly builds, run with -Z macro-backtrace for more info) error: use of irregular braces for `write!` macro --> tests/test_source.rs:7:10 | 7 | #[derive(Error, Debug)] | ^^^^^ | note: the lint level is defined here --> tests/test_source.rs:1:9 | 1 | #![deny(clippy::all, clippy::pedantic)] | ^^^^^^^^^^^ = note: `#[deny(clippy::nonstandard_macro_braces)]` implied by `#[deny(clippy::all)]` help: consider writing `Error` --> tests/test_source.rs:7:10 | 7 | #[derive(Error, Debug)] | ^^^^^ = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#nonstandard_macro_braces = note: this error originates in the derive macro `Error` (in Nightly builds, run with -Z macro-backtrace for more info) error: use of irregular braces for `write!` macro --> tests/test_source.rs:13:10 | 13 | #[derive(Error, Debug)] | ^^^^^ | help: consider writing `Error` --> tests/test_source.rs:13:10 | 13 | #[derive(Error, Debug)] | ^^^^^ = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#nonstandard_macro_braces = note: this error originates in the derive macro `Error` (in Nightly builds, run with -Z macro-backtrace for more info) error: use of irregular braces for `write!` macro --> tests/test_source.rs:21:10 | 21 | #[derive(Error, Debug)] | ^^^^^ | help: consider writing `Error` --> tests/test_source.rs:21:10 | 21 | #[derive(Error, Debug)] | ^^^^^ = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#nonstandard_macro_braces = note: this error originates in the derive macro `Error` (in Nightly builds, run with -Z macro-backtrace for more info) error: use of irregular braces for `write!` macro --> tests/test_source.rs:54:18 | 54 | #[derive(Error)] | ^^^^^ ... 64 | / error_from_macro! { 65 | | #[error("Something")] 66 | | Variant(#[from] io::Error) 67 | | } | |_- in this macro invocation | help: consider writing `Error` --> tests/test_source.rs:54:18 | 54 | #[derive(Error)] | ^^^^^ ... 64 | / error_from_macro! { 65 | | #[error("Something")] 66 | | Variant(#[from] io::Error) 67 | | } | |_- in this macro invocation = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#nonstandard_macro_braces = note: this error originates in the derive macro `Error` (in Nightly builds, run with -Z macro-backtrace for more info) error: use of irregular braces for `write!` macro --> tests/test_expr.rs:9:10 | 9 | #[derive(Error, Debug)] | ^^^^^ | note: the lint level is defined here --> tests/test_expr.rs:1:9 | 1 | #![deny(clippy::all, clippy::pedantic)] | ^^^^^^^^^^^ = note: `#[deny(clippy::nonstandard_macro_braces)]` implied by `#[deny(clippy::all)]` help: consider writing `Error` --> tests/test_expr.rs:9:10 | 9 | #[derive(Error, Debug)] | ^^^^^ = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#nonstandard_macro_braces = note: this error originates in the derive macro `Error` (in Nightly builds, run with -Z macro-backtrace for more info) error: use of irregular braces for `write!` macro --> tests/test_expr.rs:39:10 | 39 | #[derive(Error, Debug)] | ^^^^^ | help: consider writing `Error` --> tests/test_expr.rs:39:10 | 39 | #[derive(Error, Debug)] | ^^^^^ = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#nonstandard_macro_braces = note: this error originates in the derive macro `Error` (in Nightly builds, run with -Z macro-backtrace for more info) error: use of irregular braces for `write!` macro --> tests/test_from.rs:6:10 | 6 | #[derive(Error, Debug)] | ^^^^^ | note: the lint level is defined here --> tests/test_from.rs:1:9 | 1 | #![deny(clippy::all, clippy::pedantic)] | ^^^^^^^^^^^ = note: `#[deny(clippy::nonstandard_macro_braces)]` implied by `#[deny(clippy::all)]` help: consider writing `Error` --> tests/test_from.rs:6:10 | 6 | #[derive(Error, Debug)] | ^^^^^ = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#nonstandard_macro_braces = note: this error originates in the derive macro `Error` (in Nightly builds, run with -Z macro-backtrace for more info) error: use of irregular braces for `write!` macro --> tests/test_from.rs:13:10 | 13 | #[derive(Error, Debug)] | ^^^^^ | help: consider writing `Error` --> tests/test_from.rs:13:10 | 13 | #[derive(Error, Debug)] | ^^^^^ = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#nonstandard_macro_braces = note: this error originates in the derive macro `Error` (in Nightly builds, run with -Z macro-backtrace for more info) error: use of irregular braces for `write!` macro --> tests/test_path.rs:8:10 | 8 | #[derive(Error, Debug)] | ^^^^^ | note: the lint level is defined here --> tests/test_path.rs:1:9 | 1 | #![deny(clippy::all, clippy::pedantic)] | ^^^^^^^^^^^ = note: `#[deny(clippy::nonstandard_macro_braces)]` implied by `#[deny(clippy::all)]` help: consider writing `Error` --> tests/test_path.rs:8:10 | 8 | #[derive(Error, Debug)] | ^^^^^ = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#nonstandard_macro_braces = note: this error originates in the derive macro `Error` (in Nightly builds, run with -Z macro-backtrace for more info) error: use of irregular braces for `write!` macro --> tests/test_path.rs:14:10 | 14 | #[derive(Error, Debug, RefCast)] | ^^^^^ | help: consider writing `Error` --> tests/test_path.rs:14:10 | 14 | #[derive(Error, Debug, RefCast)] | ^^^^^ = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#nonstandard_macro_braces = note: this error originates in the derive macro `Error` (in Nightly builds, run with -Z macro-backtrace for more info) error: use of irregular braces for `write!` macro --> tests/test_from.rs:17:10 | 17 | #[derive(Error, Debug)] | ^^^^^ | help: consider writing `Error` --> tests/test_from.rs:17:10 | 17 | #[derive(Error, Debug)] | ^^^^^ = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#nonstandard_macro_braces = note: this error originates in the derive macro `Error` (in Nightly builds, run with -Z macro-backtrace for more info) error: use of irregular braces for `write!` macro --> tests/test_path.rs:21:10 | 21 | #[derive(Error, Debug)] | ^^^^^ | help: consider writing `Error` --> tests/test_path.rs:21:10 | 21 | #[derive(Error, Debug)] | ^^^^^ = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#nonstandard_macro_braces = note: this error originates in the derive macro `Error` (in Nightly builds, run with -Z macro-backtrace for more info) error: use of irregular braces for `write!` macro --> tests/test_transparent.rs:14:14 | 14 | #[derive(Error, Debug)] | ^^^^^ | note: the lint level is defined here --> tests/test_transparent.rs:1:9 | 1 | #![deny(clippy::all, clippy::pedantic)] | ^^^^^^^^^^^ = note: `#[deny(clippy::nonstandard_macro_braces)]` implied by `#[deny(clippy::all)]` help: consider writing `Error` --> tests/test_transparent.rs:14:14 | 14 | #[derive(Error, Debug)] | ^^^^^ = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#nonstandard_macro_braces = note: this error originates in the derive macro `Error` (in Nightly builds, run with -Z macro-backtrace for more info) error: use of irregular braces for `write!` macro --> tests/test_from.rs:26:10 | 26 | #[derive(Error, Debug)] | ^^^^^ | help: consider writing `Error` --> tests/test_from.rs:26:10 | 26 | #[derive(Error, Debug)] | ^^^^^ = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#nonstandard_macro_braces = note: this error originates in the derive macro `Error` (in Nightly builds, run with -Z macro-backtrace for more info) error: use of irregular braces for `write!` macro --> tests/test_transparent.rs:34:14 | 34 | #[derive(Error, Debug)] | ^^^^^ | help: consider writing `Error` --> tests/test_transparent.rs:34:14 | 34 | #[derive(Error, Debug)] | ^^^^^ = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#nonstandard_macro_braces = note: this error originates in the derive macro `Error` (in Nightly builds, run with -Z macro-backtrace for more info) error: use of irregular braces for `write!` macro --> tests/test_transparent.rs:69:14 | 69 | #[derive(Error, Debug)] | ^^^^^ | help: consider writing `Error` --> tests/test_transparent.rs:69:14 | 69 | #[derive(Error, Debug)] | ^^^^^ = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#nonstandard_macro_braces = note: this error originates in the derive macro `Error` (in Nightly builds, run with -Z macro-backtrace for more info) error: use of irregular braces for `write!` macro --> tests/test_display.rs:12:14 | 12 | #[derive(Error, Debug)] | ^^^^^ | note: the lint level is defined here --> tests/test_display.rs:1:9 | 1 | #![deny(clippy::all, clippy::pedantic)] | ^^^^^^^^^^^ = note: `#[deny(clippy::nonstandard_macro_braces)]` implied by `#[deny(clippy::all)]` help: consider writing `Error` --> tests/test_display.rs:12:14 | 12 | #[derive(Error, Debug)] | ^^^^^ = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#nonstandard_macro_braces = note: this error originates in the derive macro `Error` (in Nightly builds, run with -Z macro-backtrace for more info) error: use of irregular braces for `write!` macro --> tests/test_display.rs:24:14 | 24 | #[derive(Error, Debug)] | ^^^^^ | help: consider writing `Error` --> tests/test_display.rs:24:14 | 24 | #[derive(Error, Debug)] | ^^^^^ = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#nonstandard_macro_braces = note: this error originates in the derive macro `Error` (in Nightly builds, run with -Z macro-backtrace for more info) error: use of irregular braces for `write!` macro --> tests/test_display.rs:35:14 | 35 | #[derive(Error, Debug)] | ^^^^^ | help: consider writing `Error` --> tests/test_display.rs:35:14 | 35 | #[derive(Error, Debug)] | ^^^^^ = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#nonstandard_macro_braces = note: this error originates in the derive macro `Error` (in Nightly builds, run with -Z macro-backtrace for more info) error: use of irregular braces for `write!` macro --> tests/test_display.rs:44:14 | 44 | #[derive(Error, Debug)] | ^^^^^ | help: consider writing `Error` --> tests/test_display.rs:44:14 | 44 | #[derive(Error, Debug)] | ^^^^^ = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#nonstandard_macro_braces = note: this error originates in the derive macro `Error` (in Nightly builds, run with -Z macro-backtrace for more info) error: use of irregular braces for `write!` macro --> tests/test_display.rs:53:14 | 53 | #[derive(Error, Debug)] | ^^^^^ | help: consider writing `Error` --> tests/test_display.rs:53:14 | 53 | #[derive(Error, Debug)] | ^^^^^ = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#nonstandard_macro_braces = note: this error originates in the derive macro `Error` (in Nightly builds, run with -Z macro-backtrace for more info) error: use of irregular braces for `write!` macro --> tests/test_display.rs:70:14 | 70 | #[derive(Error, Debug)] | ^^^^^ | help: consider writing `Error` --> tests/test_display.rs:70:14 | 70 | #[derive(Error, Debug)] | ^^^^^ = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#nonstandard_macro_braces = note: this error originates in the derive macro `Error` (in Nightly builds, run with -Z macro-backtrace for more info) error: use of irregular braces for `write!` macro --> tests/test_display.rs:84:14 | 84 | #[derive(Error, Debug)] | ^^^^^ | help: consider writing `Error` --> tests/test_display.rs:84:14 | 84 | #[derive(Error, Debug)] | ^^^^^ = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#nonstandard_macro_braces = note: this error originates in the derive macro `Error` (in Nightly builds, run with -Z macro-backtrace for more info) error: use of irregular braces for `write!` macro --> tests/test_display.rs:98:14 | 98 | #[derive(Error, Debug)] | ^^^^^ | help: consider writing `Error` --> tests/test_display.rs:98:14 | 98 | #[derive(Error, Debug)] | ^^^^^ = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#nonstandard_macro_braces = note: this error originates in the derive macro `Error` (in Nightly builds, run with -Z macro-backtrace for more info) error: use of irregular braces for `write!` macro --> tests/test_display.rs:107:14 | 107 | #[derive(Error, Debug)] | ^^^^^ | help: consider writing `Error` --> tests/test_display.rs:107:14 | 107 | #[derive(Error, Debug)] | ^^^^^ = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#nonstandard_macro_braces = note: this error originates in the derive macro `Error` (in Nightly builds, run with -Z macro-backtrace for more info) error: use of irregular braces for `write!` macro --> tests/test_display.rs:115:14 | 115 | #[derive(Error, Debug)] | ^^^^^ | help: consider writing `Error` --> tests/test_display.rs:115:14 | 115 | #[derive(Error, Debug)] | ^^^^^ = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#nonstandard_macro_braces = note: this error originates in the derive macro `Error` (in Nightly builds, run with -Z macro-backtrace for more info) error: use of irregular braces for `write!` macro --> tests/test_display.rs:129:14 | 129 | #[derive(Error, Debug)] | ^^^^^ | help: consider writing `Error` --> tests/test_display.rs:129:14 | 129 | #[derive(Error, Debug)] | ^^^^^ = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#nonstandard_macro_braces = note: this error originates in the derive macro `Error` (in Nightly builds, run with -Z macro-backtrace for more info) error: use of irregular braces for `write!` macro --> tests/test_display.rs:158:14 | 158 | #[derive(Error, Debug)] | ^^^^^ | help: consider writing `Error` --> tests/test_display.rs:158:14 | 158 | #[derive(Error, Debug)] | ^^^^^ = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#nonstandard_macro_braces = note: this error originates in the derive macro `Error` (in Nightly builds, run with -Z macro-backtrace for more info) error: use of irregular braces for `write!` macro --> tests/test_display.rs:170:14 | 170 | #[derive(Error, Debug)] | ^^^^^ | help: consider writing `Error` --> tests/test_display.rs:170:14 | 170 | #[derive(Error, Debug)] | ^^^^^ = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#nonstandard_macro_braces = note: this error originates in the derive macro `Error` (in Nightly builds, run with -Z macro-backtrace for more info) error: use of irregular braces for `write!` macro --> tests/test_display.rs:184:14 | 184 | #[derive(Error, Debug)] | ^^^^^ | help: consider writing `Error` --> tests/test_display.rs:184:14 | 184 | #[derive(Error, Debug)] | ^^^^^ = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#nonstandard_macro_braces = note: this error originates in the derive macro `Error` (in Nightly builds, run with -Z macro-backtrace for more info) error: use of irregular braces for `write!` macro --> tests/test_display.rs:201:14 | 201 | #[derive(Error, Debug)] | ^^^^^ | help: consider writing `Error` --> tests/test_display.rs:201:14 | 201 | #[derive(Error, Debug)] | ^^^^^ = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#nonstandard_macro_braces = note: this error originates in the derive macro `Error` (in Nightly builds, run with -Z macro-backtrace for more info) error: use of irregular braces for `write!` macro --> tests/test_display.rs:214:29 | 214 | #[derive(Debug, Error)] | ^^^^^ ... 228 | decl_error!(Repro(u8)); | ----------------------- in this macro invocation | help: consider writing `Error` --> tests/test_display.rs:214:29 | 214 | #[derive(Debug, Error)] | ^^^^^ ... 228 | decl_error!(Repro(u8)); | ----------------------- in this macro invocation = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#nonstandard_macro_braces = note: this error originates in the derive macro `Error` (in Nightly builds, run with -Z macro-backtrace for more info) error: use of irregular braces for `write!` macro --> tests/test_display.rs:220:29 | 220 | #[derive(Debug, Error)] | ^^^^^ ... 228 | decl_error!(Repro(u8)); | ----------------------- in this macro invocation | help: consider writing `Error` --> tests/test_display.rs:220:29 | 220 | #[derive(Debug, Error)] | ^^^^^ ... 228 | decl_error!(Repro(u8)); | ----------------------- in this macro invocation = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#nonstandard_macro_braces = note: this error originates in the derive macro `Error` (in Nightly builds, run with -Z macro-backtrace for more info) error: use of irregular braces for `write!` macro --> tests/test_display.rs:236:14 | 236 | #[derive(Error, Debug)] | ^^^^^ | help: consider writing `Error` --> tests/test_display.rs:236:14 | 236 | #[derive(Error, Debug)] | ^^^^^ = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#nonstandard_macro_braces = note: this error originates in the derive macro `Error` (in Nightly builds, run with -Z macro-backtrace for more info) error: use of irregular braces for `write!` macro --> tests/test_display.rs:247:14 | 247 | #[derive(Error, Debug)] | ^^^^^ | help: consider writing `Error` --> tests/test_display.rs:247:14 | 247 | #[derive(Error, Debug)] | ^^^^^ = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#nonstandard_macro_braces = note: this error originates in the derive macro `Error` (in Nightly builds, run with -Z macro-backtrace for more info) error: use of irregular braces for `write!` macro --> tests/test_display.rs:258:14 | 258 | #[derive(Error, Debug)] | ^^^^^ | help: consider writing `Error` --> tests/test_display.rs:258:14 | 258 | #[derive(Error, Debug)] | ^^^^^ = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#nonstandard_macro_braces = note: this error originates in the derive macro `Error` (in Nightly builds, run with -Z macro-backtrace for more info) error: use of irregular braces for `write!` macro --> tests/test_display.rs:269:14 | 269 | #[derive(Error, Debug)] | ^^^^^ | help: consider writing `Error` --> tests/test_display.rs:269:14 | 269 | #[derive(Error, Debug)] | ^^^^^ = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#nonstandard_macro_braces = note: this error originates in the derive macro `Error` (in Nightly builds, run with -Z macro-backtrace for more info) |
||
|
f42549e0ef
|
Work around test suite warning in rustc older than 1.39
Apparently this is fine in 1.39 and up, but older compilers warn. warning: enum is never used: `Error` --> tests/test_display.rs:151:5 | 151 | pub enum Error {} | ^^^^^^^^^^^^^^ | = note: `#[warn(dead_code)]` on by default warning: struct is never constructed: `MyError` --> tests/test_lints.rs:15:5 | 15 | pub struct MyError; | ^^^^^^^^^^^^^^^^^^^ | = note: `#[warn(dead_code)]` on by default |
||
|
3a80d0325a
|
Add test involving unused_qualifications |