]> git.lizzy.rs Git - rust.git/blob - src/test/ui/consts/const-eval/index-out-of-bounds-never-type.stderr
Merge branch 'master' into hooks
[rust.git] / src / test / ui / consts / const-eval / index-out-of-bounds-never-type.stderr
1 warning: any use of this value will cause an error
2   --> $DIR/index-out-of-bounds-never-type.rs:10:61
3    |
4 LL |     const VOID: ! = { let x = 0 * std::mem::size_of::<T>(); [][x] };
5    |     --------------------------------------------------------^^^^^---
6    |                                                             |
7    |                                                             index out of bounds: the length is 0 but the index is 0
8    |
9 note: the lint level is defined here
10   --> $DIR/index-out-of-bounds-never-type.rs:4:9
11    |
12 LL | #![warn(const_err, unconditional_panic)]
13    |         ^^^^^^^^^
14
15 error: erroneous constant encountered
16   --> $DIR/index-out-of-bounds-never-type.rs:16:13
17    |
18 LL |     let _ = PrintName::<T>::VOID;
19    |             ^^^^^^^^^^^^^^^^^^^^
20
21 error: aborting due to previous error; 1 warning emitted
22