]> git.lizzy.rs Git - rust.git/blob - src/test/ui/borrowck/issue-88434-removal-index-should-be-less.stderr
Rollup merge of #102277 - mgeisler:rwlock, r=m-ou-se
[rust.git] / src / test / ui / borrowck / issue-88434-removal-index-should-be-less.stderr
1 error[E0080]: evaluation of constant value failed
2   --> $DIR/issue-88434-removal-index-should-be-less.rs:10:5
3    |
4 LL | const _CONST: &[u8] = &f(&[], |_| {});
5    |                        -------------- inside `_CONST` at $DIR/issue-88434-removal-index-should-be-less.rs:3:24
6 ...
7 LL |     panic!()
8    |     ^^^^^^^^
9    |     |
10    |     the evaluated program panicked at 'explicit panic', $DIR/issue-88434-removal-index-should-be-less.rs:10:5
11    |     inside `f::<[closure@$DIR/issue-88434-removal-index-should-be-less.rs:3:31: 3:34]>` at $SRC_DIR/std/src/panic.rs:LL:COL
12    |
13    = note: this error originates in the macro `$crate::panic::panic_2015` which comes from the expansion of the macro `panic` (in Nightly builds, run with -Z macro-backtrace for more info)
14
15 error[E0080]: evaluation of constant value failed
16   --> $DIR/issue-88434-removal-index-should-be-less.rs:3:23
17    |
18 LL | const _CONST: &[u8] = &f(&[], |_| {});
19    |                       ^^^^^^^^^^^^^^^ referenced constant has errors
20
21 error: aborting due to 2 previous errors
22
23 For more information about this error, try `rustc --explain E0080`.