rust-clippy/tests/ui/crashes/ice-8250.rs

7 lines
103 B
Rust
Raw Normal View History

fn _f(s: &str) -> Option<()> {
let _ = s[1..].splitn(2, '.').next()?;
Some(())
}
fn main() {}