This repository has been archived by the owner on Oct 6, 2024. It is now read-only.
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New in nightly-2024-03-24 from rust-lang/rust#119552. warning: field `0` is never read --> tests/test_item.rs:64:37 | 64 | pub struct S<$life>(pub &$life ()); | - ^^^^^^^^^^^^^ | | | field in this struct ... 72 | m!('a); | ------ in this macro invocation | = note: `#[warn(dead_code)]` on by default = note: this warning originates in the macro `m` (in Nightly builds, run with -Z macro-backtrace for more info) help: consider changing the field to be of unit type to suppress this warning while preserving the field numbering, or remove the field | 64 | pub struct S<$life>(()); | ~~
- Loading branch information