You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 6, 2024. It is now read-only.
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>(());
| ~~
0 commit comments