]> git.lizzy.rs Git - rust.git/blob - tests/ui/borrowck/issue-88434-minimal-example.stderr
Rollup merge of #106570 - Xaeroxe:div-duration-tests, r=JohnTitor
[rust.git] / tests / ui / borrowck / issue-88434-minimal-example.stderr
1 error[E0080]: evaluation of constant value failed
2   --> $DIR/issue-88434-minimal-example.rs:10:5
3    |
4 LL |     panic!()
5    |     ^^^^^^^^ the evaluated program panicked at 'explicit panic', $DIR/issue-88434-minimal-example.rs:10:5
6    |
7 note: inside `f::<[closure@$DIR/issue-88434-minimal-example.rs:3:25: 3:28]>`
8   --> $DIR/issue-88434-minimal-example.rs:10:5
9    |
10 LL |     panic!()
11    |     ^^^^^^^^
12 note: inside `_CONST`
13   --> $DIR/issue-88434-minimal-example.rs:3:22
14    |
15 LL | const _CONST: &() = &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-88434-minimal-example.rs:3:21
21    |
22 LL | const _CONST: &() = &f(&|_| {});
23    |                     ^^^^^^^^^^^
24
25 error: aborting due to previous error
26
27 For more information about this error, try `rustc --explain E0080`.