]> git.lizzy.rs Git - rust.git/blob - tests/ui/borrowck/issue-81899.stderr
Rollup merge of #106726 - cmorin6:fix-comment-typos, r=Nilstrieb
[rust.git] / tests / ui / borrowck / issue-81899.stderr
1 error[E0080]: evaluation of constant value failed
2   --> $DIR/issue-81899.rs:11:5
3    |
4 LL |     panic!()
5    |     ^^^^^^^^ the evaluated program panicked at 'explicit panic', $DIR/issue-81899.rs:11:5
6    |
7 note: inside `f::<[closure@$DIR/issue-81899.rs:4:31: 4:34]>`
8   --> $DIR/issue-81899.rs:11:5
9    |
10 LL |     panic!()
11    |     ^^^^^^^^
12 note: inside `_CONST`
13   --> $DIR/issue-81899.rs:4:24
14    |
15 LL | const _CONST: &[u8] = &f(&[], |_| {});
16    |                        ^^^^^^^^^^^^^^
17    = 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)
18
19 note: erroneous constant used
20   --> $DIR/issue-81899.rs:4:23
21    |
22 LL | const _CONST: &[u8] = &f(&[], |_| {});
23    |                       ^^^^^^^^^^^^^^^
24
25 error: aborting due to previous error
26
27 For more information about this error, try `rustc --explain E0080`.