2022-04-07 18:39:59 +01:00
|
|
|
error: called `.bytes().nth()` on a `String`
|
2024-02-27 15:25:18 +01:00
|
|
|
--> tests/ui/bytes_nth.rs:6:13
|
2021-02-11 15:04:38 +01:00
|
|
|
|
|
2022-03-26 16:19:47 +01:00
|
|
|
LL | let _ = s.bytes().nth(3);
|
2023-02-25 19:08:29 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^ help: try: `s.as_bytes().get(3).copied()`
|
2021-02-11 15:04:38 +01:00
|
|
|
|
|
|
|
|
= note: `-D clippy::bytes-nth` implied by `-D warnings`
|
2023-08-01 14:02:21 +02:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::bytes_nth)]`
|
2021-02-11 15:04:38 +01:00
|
|
|
|
2023-02-25 19:08:29 -05:00
|
|
|
error: called `.bytes().nth().unwrap()` on a `String`
|
2024-02-27 15:25:18 +01:00
|
|
|
--> tests/ui/bytes_nth.rs:7:14
|
2021-02-11 15:04:38 +01:00
|
|
|
|
|
2023-02-25 19:08:29 -05:00
|
|
|
LL | let _ = &s.bytes().nth(3).unwrap();
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `s.as_bytes()[3]`
|
2021-02-11 15:04:38 +01:00
|
|
|
|
2022-04-07 18:39:59 +01:00
|
|
|
error: called `.bytes().nth()` on a `str`
|
2024-02-27 15:25:18 +01:00
|
|
|
--> tests/ui/bytes_nth.rs:8:13
|
2021-02-11 15:04:38 +01:00
|
|
|
|
|
2022-03-26 16:19:47 +01:00
|
|
|
LL | let _ = s[..].bytes().nth(3);
|
2023-02-25 19:08:29 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^ help: try: `s[..].as_bytes().get(3).copied()`
|
2021-02-11 15:04:38 +01:00
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|