Sign in
rust
/
rust-clippy
/
refs/heads/stable
/
.
/
tests
/
ui
/
crashes
/
ice-8250.fixed
blob: b0c2ddb2450d0a7acc28fcc8542e0a53a7046637 [
file
] [
log
] [
blame
] [
edit
]
fn _f
(
s
:
&
str
)
->
Option
<()>
{
let
_
=
s
[
1.
.].
split
(
'.'
).
next
()?;
//~^ needless_splitn
Some
(())
}
fn main
()
{}