2022-04-07 17:39:59 +00:00
|
|
|
error: called `.bytes().nth()` on a `String`
|
2022-03-26 15:19:47 +00:00
|
|
|
--> $DIR/bytes_nth.rs:8:13
|
2021-02-11 14:04:38 +00:00
|
|
|
|
|
2022-03-26 15:19:47 +00:00
|
|
|
LL | let _ = s.bytes().nth(3);
|
|
|
|
| ^^^^^^^^^^^^^^^^ help: try: `s.as_bytes().get(3)`
|
2021-02-11 14:04:38 +00:00
|
|
|
|
|
|
|
|
= note: `-D clippy::bytes-nth` implied by `-D warnings`
|
|
|
|
|
2022-04-07 17:39:59 +00:00
|
|
|
error: called `.bytes().nth()` on a `String`
|
2021-06-18 08:11:32 +00:00
|
|
|
--> $DIR/bytes_nth.rs:9:14
|
2021-02-11 14:04:38 +00:00
|
|
|
|
|
2021-06-18 08:11:32 +00:00
|
|
|
LL | let _ = &s.bytes().nth(3);
|
|
|
|
| ^^^^^^^^^^^^^^^^ help: try: `s.as_bytes().get(3)`
|
2021-02-11 14:04:38 +00:00
|
|
|
|
2022-04-07 17:39:59 +00:00
|
|
|
error: called `.bytes().nth()` on a `str`
|
2022-03-26 15:19:47 +00:00
|
|
|
--> $DIR/bytes_nth.rs:10:13
|
2021-02-11 14:04:38 +00:00
|
|
|
|
|
2022-03-26 15:19:47 +00:00
|
|
|
LL | let _ = s[..].bytes().nth(3);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^ help: try: `s[..].as_bytes().get(3)`
|
2021-02-11 14:04:38 +00:00
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|