mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-03 04:47:38 +03:00
Ignore extra_unused_type_parameters clippy lint in test
error: type parameter goes unused in function definition --> tests/test_from.rs:51:15 | 51 | fn assert_impl<T: From<io::Error>>() {} | ^^^^^^^^^^^^^^^^^^^^ | = help: consider removing the parameter = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#extra_unused_type_parameters = note: `-D clippy::extra-unused-type-parameters` implied by `-D clippy::all`
This commit is contained in:
parent
0d23ebc77a
commit
920ad73295
1 changed files with 2 additions and 0 deletions
|
@ -1,3 +1,5 @@
|
|||
#![allow(clippy::extra_unused_type_parameters)]
|
||||
|
||||
use std::io;
|
||||
use thiserror::Error;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue