Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Work around dead_code warning in test
warning: field `0` is never read --> tests/test.rs:678:22 | 678 | pub struct Tuple(u8); | ----- ^^ | | | field in this struct | = note: `#[warn(dead_code)]` on by default help: consider changing the field to be of unit type to suppress this warning while preserving the field numbering, or remove the field | 678 | pub struct Tuple(()); | ~~
- Loading branch information