rust/compiler/rustc_infer
Yuki Okushi ce6367f479
Rollup merge of #82240 - matthiaskrgr:qmark, r=Dylan-DPC
remove useless ?s (clippy::needless_question_marks)

Example code:
```rust
fn opts() -> Option<String> {
    let s: Option<String> = Some(String::new());
    Some(s?) // this can just be "s"
}
```
2021-02-18 15:57:33 +09:00
..
src Rollup merge of #82240 - matthiaskrgr:qmark, r=Dylan-DPC 2021-02-18 15:57:33 +09:00
Cargo.toml bumped smallvec deps 2021-02-14 18:03:11 +03:00