summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/indexing_slicing_index.stderr
blob: 8fd77913a3fd97626ed617357380b578ab13ef1c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
error: indexing may panic
  --> $DIR/indexing_slicing_index.rs:9:20
   |
LL | const REF: &i32 = &ARR[idx()]; // This should be linted, since `suppress-restriction-lint-in-const` default is false.
   |                    ^^^^^^^^^^
   |
   = help: consider using `.get(n)` or `.get_mut(n)` instead
   = note: the suggestion might not be applicable in constant blocks
   = note: `-D clippy::indexing-slicing` implied by `-D warnings`

error: indexing may panic
  --> $DIR/indexing_slicing_index.rs:10:24
   |
LL | const REF_ERR: &i32 = &ARR[idx4()]; // Ok, let rustc handle const contexts.
   |                        ^^^^^^^^^^^
   |
   = help: consider using `.get(n)` or `.get_mut(n)` instead
   = note: the suggestion might not be applicable in constant blocks

error[E0080]: evaluation of `main::{constant#3}` failed
  --> $DIR/indexing_slicing_index.rs:31:14
   |
LL |     const { &ARR[idx4()] }; // This should be linted, since `suppress-restriction-lint-in-const` default is false.
   |              ^^^^^^^^^^^ index out of bounds: the length is 2 but the index is 4

note: erroneous constant used
  --> $DIR/indexing_slicing_index.rs:31:5
   |
LL |     const { &ARR[idx4()] }; // This should be linted, since `suppress-restriction-lint-in-const` default is false.
   |     ^^^^^^^^^^^^^^^^^^^^^^

error: indexing may panic
  --> $DIR/indexing_slicing_index.rs:22:5
   |
LL |     x[index];
   |     ^^^^^^^^
   |
   = help: consider using `.get(n)` or `.get_mut(n)` instead

error: indexing may panic
  --> $DIR/indexing_slicing_index.rs:30:14
   |
LL |     const { &ARR[idx()] }; // This should be linted, since `suppress-restriction-lint-in-const` default is false.
   |              ^^^^^^^^^^
   |
   = help: consider using `.get(n)` or `.get_mut(n)` instead
   = note: the suggestion might not be applicable in constant blocks

error: indexing may panic
  --> $DIR/indexing_slicing_index.rs:31:14
   |
LL |     const { &ARR[idx4()] }; // This should be linted, since `suppress-restriction-lint-in-const` default is false.
   |              ^^^^^^^^^^^
   |
   = help: consider using `.get(n)` or `.get_mut(n)` instead
   = note: the suggestion might not be applicable in constant blocks

error: indexing may panic
  --> $DIR/indexing_slicing_index.rs:38:5
   |
LL |     v[0];
   |     ^^^^
   |
   = help: consider using `.get(n)` or `.get_mut(n)` instead

error: indexing may panic
  --> $DIR/indexing_slicing_index.rs:39:5
   |
LL |     v[10];
   |     ^^^^^
   |
   = help: consider using `.get(n)` or `.get_mut(n)` instead

error: indexing may panic
  --> $DIR/indexing_slicing_index.rs:40:5
   |
LL |     v[1 << 3];
   |     ^^^^^^^^^
   |
   = help: consider using `.get(n)` or `.get_mut(n)` instead

error: indexing may panic
  --> $DIR/indexing_slicing_index.rs:46:5
   |
LL |     v[N];
   |     ^^^^
   |
   = help: consider using `.get(n)` or `.get_mut(n)` instead

error: indexing may panic
  --> $DIR/indexing_slicing_index.rs:47:5
   |
LL |     v[M];
   |     ^^^^
   |
   = help: consider using `.get(n)` or `.get_mut(n)` instead

error[E0080]: evaluation of constant value failed
  --> $DIR/indexing_slicing_index.rs:10:24
   |
LL | const REF_ERR: &i32 = &ARR[idx4()]; // Ok, let rustc handle const contexts.
   |                        ^^^^^^^^^^^ index out of bounds: the length is 2 but the index is 4

error: aborting due to 12 previous errors

For more information about this error, try `rustc --explain E0080`.