summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/index_refutable_slice/slice_indexing_in_macro.stderr
blob: 11b19428b4fdc3552e809264c6a3f0d2b83ca9db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
error: this binding can be a slice pattern to avoid indexing
  --> $DIR/slice_indexing_in_macro.rs:23:21
   |
LL |         if let Some(slice) = slice;
   |                     ^^^^^
   |
note: the lint level is defined here
  --> $DIR/slice_indexing_in_macro.rs:1:9
   |
LL | #![deny(clippy::index_refutable_slice)]
   |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
help: try using a slice pattern here
   |
LL |         if let Some([slice_0, ..]) = slice;
   |                     ~~~~~~~~~~~~~
help: and replace the index expressions here
   |
LL |             println!("{}", slice_0);
   |                            ~~~~~~~

error: aborting due to previous error