2022-06-04 06:34:07 -05:00
|
|
|
error: accessing first element with `x.get(0)`
|
2023-08-24 14:32:12 -05:00
|
|
|
--> $DIR/get_first.rs:17:13
|
2022-06-04 06:34:07 -05:00
|
|
|
|
|
|
|
|
LL | let _ = x.get(0); // Use x.first()
|
|
|
|
| ^^^^^^^^ help: try: `x.first()`
|
|
|
|
|
|
|
|
|
= note: `-D clippy::get-first` implied by `-D warnings`
|
2023-08-01 07:02:21 -05:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::get_first)]`
|
2022-06-04 06:34:07 -05:00
|
|
|
|
|
|
|
error: accessing first element with `y.get(0)`
|
2023-08-24 14:32:12 -05:00
|
|
|
--> $DIR/get_first.rs:22:13
|
2022-06-04 06:34:07 -05:00
|
|
|
|
|
|
|
|
LL | let _ = y.get(0); // Use y.first()
|
|
|
|
| ^^^^^^^^ help: try: `y.first()`
|
|
|
|
|
|
|
|
error: accessing first element with `z.get(0)`
|
2023-08-24 14:32:12 -05:00
|
|
|
--> $DIR/get_first.rs:27:13
|
2022-06-04 06:34:07 -05:00
|
|
|
|
|
|
|
|
LL | let _ = z.get(0); // Use z.first()
|
|
|
|
| ^^^^^^^^ help: try: `z.first()`
|
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|