about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/crashes/ice-8250.fixed
blob: b0c2ddb2450d0a7acc28fcc8542e0a53a7046637 (plain)
1
2
3
4
5
6
7
8
fn _f(s: &str) -> Option<()> {
    let _ = s[1..].split('.').next()?;
    //~^ needless_splitn

    Some(())
}

fn main() {}