]> git.lizzy.rs Git - rust.git/blob - tests/ui/consts/const-eval/erroneous-const2.stderr
Rollup merge of #106726 - cmorin6:fix-comment-typos, r=Nilstrieb
[rust.git] / tests / ui / consts / const-eval / erroneous-const2.stderr
1 error[E0080]: evaluation of `PrintName::<i32>::VOID` failed
2   --> $DIR/erroneous-const2.rs:6:22
3    |
4 LL |     const VOID: () = [()][2];
5    |                      ^^^^^^^ index out of bounds: the length is 1 but the index is 2
6
7 note: erroneous constant used
8   --> $DIR/erroneous-const2.rs:13:17
9    |
10 LL |         let _ = PrintName::<i32>::VOID;
11    |                 ^^^^^^^^^^^^^^^^^^^^^^
12
13 error: aborting due to previous error
14
15 For more information about this error, try `rustc --explain E0080`.