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
fail!() expansion triggers dead code warning. Regardless of position, I don't think fail should cause any warnings. I like to use fail!() to stub out match cases and function bodies.
The fail macro defines some function/static items internally, which got
a dead_code warning when `fail!()` is used inside a dead function. This
is ugly and unnecessarily reveals implementation details, so the
warnings can be squashed.
Fixesrust-lang#16192.
The fail macro defines some function/static items internally, which got
a dead_code warning when `fail!()` is used inside a dead function. This
is ugly and unnecessarily reveals implementation details, so the
warnings can be squashed.
Fixes#16192.
The fail macro defines some function/static items internally, which got
a dead_code warning when `fail!()` is used inside a dead function. This
is ugly and unnecessarily reveals implementation details, so the
warnings can be squashed.
Fixes#16192.
fail!()
expansion triggers dead code warning. Regardless of position, I don't think fail should cause any warnings. I like to usefail!()
to stub out match cases and function bodies.Rustc version: rustc 0.12.0-pre-nightly (d7cfc34 2014-08-02 00:31:03 +0000)
The text was updated successfully, but these errors were encountered: