]> git.lizzy.rs Git - rust.git/blob - src/test/ui/consts/const-eval/index-out-of-bounds-never-type.stderr
Rollup merge of #81710 - TyPR124:patch-2, r=m-ou-se
[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    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
15    = note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>
16
17 error: erroneous constant encountered
18   --> $DIR/index-out-of-bounds-never-type.rs:17:13
19    |
20 LL |     let _ = PrintName::<T>::VOID;
21    |             ^^^^^^^^^^^^^^^^^^^^
22
23 error: aborting due to previous error; 1 warning emitted
24