]> git.lizzy.rs Git - rust.git/blob - src/test/ui/borrowck/issue-88434-minimal-example.stderr
bless tests
[rust.git] / src / test / ui / borrowck / issue-88434-minimal-example.stderr
1 error[E0080]: evaluation of constant value failed
2 <<<<<<< HEAD
3   --> $DIR/issue-88434-minimal-example.rs:9:5
4 =======
5   --> $DIR/issue-88434-minimal-example.rs:12:5
6 >>>>>>> a4feb9af018 (bless tests)
7    |
8 LL | const _CONST: &() = &f(&|_| {});
9    |                      ---------- inside `_CONST` at $DIR/issue-88434-minimal-example.rs:3:22
10 ...
11 LL |     panic!()
12    |     ^^^^^^^^
13    |     |
14 <<<<<<< HEAD
15    |     the evaluated program panicked at 'explicit panic', $DIR/issue-88434-minimal-example.rs:9:5
16    |     inside `f::<[closure@$DIR/issue-88434-minimal-example.rs:3:25: 3:31]>` at $SRC_DIR/std/src/panic.rs:LL:COL
17 =======
18    |     the evaluated program panicked at 'explicit panic', $DIR/issue-88434-minimal-example.rs:12:5
19    |     inside `f::<[closure@$DIR/issue-88434-minimal-example.rs:4:25: 4:31]>` at $SRC_DIR/std/src/panic.rs:LL:COL
20 >>>>>>> a4feb9af018 (bless tests)
21    |
22    = note: this error originates in the macro `$crate::panic::panic_2015` (in Nightly builds, run with -Z macro-backtrace for more info)
23
24 error: any use of this value will cause an error
25   --> $DIR/issue-88434-minimal-example.rs:4:21
26    |
27 LL | const _CONST: &() = &f(&|_| {});
28    | --------------------^^^^^^^^^^^-
29    |                     |
30    |                     referenced constant has errors
31    |
32    = note: `#[deny(const_err)]` on by default
33    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
34    = note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>
35
36 error: aborting due to 2 previous errors
37
38 For more information about this error, try `rustc --explain E0080`.