about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/unwrap.rs
blob: 3191b396f99bc955074a24f548114b6c413bb0d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#![warn(clippy::unwrap_used)]
#![allow(clippy::unnecessary_literal_unwrap)]

fn unwrap_option() {
    let opt = Some(0);
    let _ = opt.unwrap();
    //~^ unwrap_used
}

fn unwrap_result() {
    let res: Result<u8, u8> = Ok(0);
    let _ = res.unwrap();
    //~^ unwrap_used

    let _ = res.unwrap_err();
    //~^ unwrap_used
}

fn main() {
    unwrap_option();
    unwrap_result();
}