C-bugI-false-negativegood first issue
Repository metrics
- Stars
- (10,406 stars)
- PR merge metrics
- (Avg merge 18d 15h) (115 merged PRs in 30d)
Description
What it does
Suggests turning let _unused = returns_nothing(); to returns_nothing();
Advantage
Increases code hygiene
Drawbacks
None
Example
let _unused: () = returns_nothing();
Could be written as:
returns_nothing();
Comparison with existing lints
No similar lints were found
Additional Context
A quick Github search shows around 116 thousand instances of the aforementioned example