Sign in
fuchsia
/
third_party
/
rust
/
upstream/beta
/
.
/
src
/
tools
/
clippy
/
tests
/
ui
/
crashes
/
ice-8250.rs
blob: ee0eb8e1eb1a2b841136d20a99afecb434b8688c [
file
]
fn
_f
(
s
:
&
str
)
->
Option
<()>
{
let
_
=
s
[
1.
.].
splitn
(
2
,
'.'
).
next
()?;
//~^ needless_splitn
Some
(())
}
fn
main
()
{}