]> git.lizzy.rs Git - rust.git/blob - src/test/ui/consts/assoc_const_generic_impl.stderr
Do not suggest `let_else` if no bindings would be introduced
[rust.git] / src / test / ui / consts / assoc_const_generic_impl.stderr
1 warning: any use of this value will cause an error
2   --> $DIR/assoc_const_generic_impl.rs:11:34
3    |
4 LL |     const I_AM_ZERO_SIZED: ()  = [()][std::mem::size_of::<Self>()];
5    |     -----------------------------^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-
6    |                                  |
7    |                                  index out of bounds: the length is 1 but the index is 4
8    |
9 note: the lint level is defined here
10   --> $DIR/assoc_const_generic_impl.rs:3:9
11    |
12 LL | #![warn(const_err)]
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/assoc_const_generic_impl.rs:14:18
19    |
20 LL |         let () = Self::I_AM_ZERO_SIZED;
21    |                  ^^^^^^^^^^^^^^^^^^^^^
22
23 error: aborting due to previous error; 1 warning emitted
24