mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-15 12:39:31 +03:00
13 lines
335 B
Rust
13 lines
335 B
Rust
#![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
|
|
}
|