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

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

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