Test for ignoring let_underscore_must_use

This commit is contained in:
pmk21 2020-04-02 00:44:09 +05:30
parent c211cea3e9
commit 97acabe56a

View File

@ -88,4 +88,7 @@ fn main() {
let _ = a.map(|_| ());
let _ = a;
#[allow(clippy::let_underscore_must_use)]
let _ = a;
}