mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 00:47:16 +00:00
243661b739
Also move it to nursery so that the false-positives can be dealt with. CC #8574
9 lines
244 B
Rust
9 lines
244 B
Rust
#![warn(clippy::all, clippy::or_fun_call)]
|
|
|
|
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();
|
|
}
|