mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-16 18:44:56 +00:00
11 lines
301 B
Plaintext
11 lines
301 B
Plaintext
error: unnecessary use of `splitn`
|
|
--> $DIR/ice-8250.rs:2:13
|
|
|
|
|
LL | let _ = s[1..].splitn(2, '.').next()?;
|
|
| ^^^^^^^^^^^^^^^^^^^^^ help: try this: `s[1..].split('.')`
|
|
|
|
|
= note: `-D clippy::needless-splitn` implied by `-D warnings`
|
|
|
|
error: aborting due to previous error
|
|
|