summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/get_first.stderr
blob: 56b4c29a31353d664da2048efa870f3a2c597f17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
error: accessing first element with `x.get(0)`
  --> $DIR/get_first.rs:17:13
   |
LL |     let _ = x.get(0); // Use x.first()
   |             ^^^^^^^^ help: try: `x.first()`
   |
   = note: `-D clippy::get-first` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::get_first)]`

error: accessing first element with `y.get(0)`
  --> $DIR/get_first.rs:22:13
   |
LL |     let _ = y.get(0); // Use y.first()
   |             ^^^^^^^^ help: try: `y.first()`

error: accessing first element with `z.get(0)`
  --> $DIR/get_first.rs:27:13
   |
LL |     let _ = z.get(0); // Use z.first()
   |             ^^^^^^^^ help: try: `z.first()`

error: aborting due to 3 previous errors