rust/compiler/rustc_lint
Aaron Kofsky ad7587fedc Add let_underscore_lock lint.
Similar to `let_underscore_drop`, this lint checks for statements similar
to `let _ = foo`, where `foo` is a lock guard. These types of let
statements are especially problematic because the lock gets released
immediately, instead of at the end of the scope. This behavior is almost
always the wrong thing.
2022-06-04 15:34:02 -04:00
..
src Add let_underscore_lock lint. 2022-06-04 15:34:02 -04:00
Cargo.toml Remove --extern-location and all associated code 2022-04-15 11:19:06 -07:00