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