mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
41 lines
1.5 KiB
Text
41 lines
1.5 KiB
Text
error: accessing last element with `x.get(x.len() - 1)`
|
|
--> tests/ui/get_last_with_len.rs:8:13
|
|
|
|
|
LL | let _ = x.get(x.len() - 1);
|
|
| ^^^^^^^^^^^^^^^^^^ help: try: `x.last()`
|
|
|
|
|
= note: `-D clippy::get-last-with-len` implied by `-D warnings`
|
|
= help: to override `-D warnings` add `#[allow(clippy::get_last_with_len)]`
|
|
|
|
error: accessing last element with `s.field.get(s.field.len() - 1)`
|
|
--> tests/ui/get_last_with_len.rs:32:13
|
|
|
|
|
LL | let _ = s.field.get(s.field.len() - 1);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `s.field.last()`
|
|
|
|
error: accessing last element with `slice.get(slice.len() - 1)`
|
|
--> tests/ui/get_last_with_len.rs:37:13
|
|
|
|
|
LL | let _ = slice.get(slice.len() - 1);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `slice.last()`
|
|
|
|
error: accessing last element with `array.get(array.len() - 1)`
|
|
--> tests/ui/get_last_with_len.rs:40:13
|
|
|
|
|
LL | let _ = array.get(array.len() - 1);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `array.last()`
|
|
|
|
error: accessing last element with `deq.get(deq.len() - 1)`
|
|
--> tests/ui/get_last_with_len.rs:43:13
|
|
|
|
|
LL | let _ = deq.get(deq.len() - 1);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^ help: try: `deq.back()`
|
|
|
|
error: accessing last element with `nested[0].get(nested[0].len() - 1)`
|
|
--> tests/ui/get_last_with_len.rs:46:13
|
|
|
|
|
LL | let _ = nested[0].get(nested[0].len() - 1);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `nested[0].last()`
|
|
|
|
error: aborting due to 6 previous errors
|
|
|