Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tests: Fix dead_code warning for tuple struct
``` error: field `0` is never read --> tests/stream.rs:264:14 | 264 | pub struct A(i32); | - ^^^ | | | field in this struct | = note: `-D dead-code` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(dead_code)]` help: consider changing the field to be of unit type to suppress this warning while preserving the field numbering, or remove the field | 264 | pub struct A(()); | ~~ ```
- Loading branch information