rust/tests
bors f5d225de37 Auto merge of #9722 - ebobrow:question-mark, r=Manishearth
`question_mark` don't lint on `if let Err` with `else`

cc #9518

AFAICT the only time this would be a valid suggestion is the rather esoteric

```rust
let _ = if let Err(e) = x {
    return Err(e);
} else {
    // no side effects
    x.unwrap()
}
```

which doesn't seem worth checking to me. Please correct me if I'm missing something.

changelog: [`question_mark`] don't lint on `if let Err` with `else`
2022-10-27 13:01:33 +00:00
..
test_utils
ui Auto merge of #9722 - ebobrow:question-mark, r=Manishearth 2022-10-27 13:01:33 +00:00
ui-cargo
ui-internal Fix adjacent code 2022-10-15 07:03:29 -04:00
ui-toml Auto merge of #9692 - llogiq:mutable-key-more-arcs, r=Alexendoo 2022-10-25 11:27:33 +00:00
workspace_test
check-fmt.rs
clippy.toml
compile-test.rs Fix adjacent code 2022-10-07 05:07:44 -04:00
dogfood.rs Add lintcheck to packages linted by dogfood test 2022-10-22 07:37:10 -04:00
integration.rs
lint_message_convention.rs
missing-test-files.rs
versioncheck.rs Generate lint categories and explanations with declare_clippy_lint 2022-10-23 20:32:26 +00:00
workspace.rs