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
Add #[must_use] attributes to the output of the verify_* and fail macros.
This causes a compiler to output a warning if the results of those macros are ignored. Doing so is syntactically valid but almost certainly indicates a programming error, since the test assertion result is thrown away rather than being evaluated.
See also https://doc.rust-lang.org/reference/attributes/diagnostics.html#the-must_use-attribute.
PiperOrigin-RevId: 503966328
0 commit comments