summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/unwrap.rs
blob: a4a3cd1d37977d3dcb16181db4ad8c20a54ffaab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![warn(clippy::unwrap_used)]

fn unwrap_option() {
    let opt = Some(0);
    let _ = opt.unwrap();
}

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

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