about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/unwrap_or.fixed
blob: e550484b5d9f0ecd4b51188e29270b496888c797 (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_else(|| "Fail".to_string()).len();
    //~^ or_fun_call
}

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