rust-clippy/tests/ui/crashes/ice-8250.fixed
2023-08-11 14:02:28 +00:00

6 lines
99 B
Rust

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