mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-04 13:27:38 +03:00
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
This commit is contained in:
parent
915c75e8a3
commit
00b3c1405e
1 changed files with 1 additions and 1 deletions
|
@ -158,4 +158,4 @@ pub struct StructFromGeneric<E> {
|
||||||
//
|
//
|
||||||
#[derive(Error, Debug)]
|
#[derive(Error, Debug)]
|
||||||
#[error(transparent)]
|
#[error(transparent)]
|
||||||
pub struct StructTransparentGeneric<E>(E);
|
pub struct StructTransparentGeneric<E>(pub E);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue