2022-11-12 22:26:09 +01:00
|
|
|
#![warn(clippy::all, clippy::or_fun_call)]
|
2023-05-31 18:47:10 +01:00
|
|
|
#![allow(clippy::unnecessary_literal_unwrap)]
|
2018-02-15 09:56:12 -05:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let s = Some(String::from("test string")).unwrap_or("Fail".to_string()).len();
|
|
|
|
}
|
2018-02-20 12:37:30 -05:00
|
|
|
|
|
|
|
fn new_lines() {
|
2018-12-09 23:26:16 +01:00
|
|
|
let s = Some(String::from("test string")).unwrap_or("Fail".to_string()).len();
|
2018-02-20 12:37:30 -05:00
|
|
|
}
|