about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/unwrap_or.rs
blob: cdd61ac898e6de7541bb3e06177268b90ac9bc3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#![warn(clippy::or_fun_call)]
#![allow(clippy::unnecessary_literal_unwrap)]

fn main() {
    let s = Some(String::from("test string")).unwrap_or("Fail".to_string()).len();
    //~^ or_fun_call
}

fn new_lines() {
    let s = Some(String::from("test string")).unwrap_or("Fail".to_string()).len();
    //~^ or_fun_call
}