mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
8 lines
212 B
Rust
8 lines
212 B
Rust
fn _f(s: &str) -> Option<()> {
|
|
let _ = s[1..].split('.').next()?;
|
|
//~^ ERROR: unnecessary use of `splitn`
|
|
//~| NOTE: `-D clippy::needless-splitn` implied by `-D warnings`
|
|
Some(())
|
|
}
|
|
|
|
fn main() {}
|