]> git.lizzy.rs Git - rust.git/blob - src/test/ui/consts/array-literal-index-oob.stderr
Merge pull request #2 from rust-lang/master
[rust.git] / src / test / ui / consts / array-literal-index-oob.stderr
1 warning: this operation will panic at runtime
2   --> $DIR/array-literal-index-oob.rs:7:8
3    |
4 LL |     &{ [1, 2, 3][4] };
5    |        ^^^^^^^^^^^^ index out of bounds: the len is 3 but the index is 4
6    |
7 note: the lint level is defined here
8   --> $DIR/array-literal-index-oob.rs:4:20
9    |
10 LL | #![warn(const_err, unconditional_panic)]
11    |                    ^^^^^^^^^^^^^^^^^^^
12
13 warning: reaching this expression at runtime will panic or abort
14   --> $DIR/array-literal-index-oob.rs:7:8
15    |
16 LL |     &{ [1, 2, 3][4] };
17    |     ---^^^^^^^^^^^^--
18    |        |
19    |        indexing out of bounds: the len is 3 but the index is 4
20    |
21 note: the lint level is defined here
22   --> $DIR/array-literal-index-oob.rs:4:9
23    |
24 LL | #![warn(const_err, unconditional_panic)]
25    |         ^^^^^^^^^
26
27 warning: erroneous constant used
28   --> $DIR/array-literal-index-oob.rs:7:5
29    |
30 LL |     &{ [1, 2, 3][4] };
31    |     ^^^^^^^^^^^^^^^^^ referenced constant has errors
32
33 warning: 3 warnings emitted
34