]> git.lizzy.rs Git - rust.git/blob - src/test/ui/consts/const-eval/const_panic_libcore.stderr
45f2ee7744e828068611f77c8e73dca1645897a8
[rust.git] / src / test / ui / consts / const-eval / const_panic_libcore.stderr
1 error: this constant cannot be used
2   --> $DIR/const_panic_libcore.rs:15:1
3    |
4 LL | const Z: () = panic!("cheese");
5    | ^^^^^^^^^^^^^^----------------^
6    |               |
7    |               the evaluated program panicked at 'cheese', $DIR/const_panic_libcore.rs:15:15
8    |
9    = note: #[deny(const_err)] on by default
10    = note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info)
11
12 error: this constant cannot be used
13   --> $DIR/const_panic_libcore.rs:18:1
14    |
15 LL | const Y: () = unreachable!();
16    | ^^^^^^^^^^^^^^--------------^
17    |               |
18    |               the evaluated program panicked at 'internal error: entered unreachable code', $DIR/const_panic_libcore.rs:18:15
19    |
20    = note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info)
21
22 error: this constant cannot be used
23   --> $DIR/const_panic_libcore.rs:21:1
24    |
25 LL | const X: () = unimplemented!();
26    | ^^^^^^^^^^^^^^----------------^
27    |               |
28    |               the evaluated program panicked at 'not yet implemented', $DIR/const_panic_libcore.rs:21:15
29    |
30    = note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info)
31
32 error: aborting due to 3 previous errors
33