mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
12 lines
265 B
Rust
12 lines
265 B
Rust
#![feature(tool_lints)]
|
|
#![warn(clippy::all)]
|
|
|
|
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();
|
|
}
|