summary refs log tree commit diff
path: root/src/test/ui/consts/control-flow/assert.stock.stderr
blob: 0caaeca4ad23f128576fedbe22b1d38df6fbad30 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
error[E0658]: panicking in constants is unstable
  --> $DIR/assert.rs:7:15
   |
LL | const _: () = assert!(true);
   |               ^^^^^^^^^^^^^
   |
   = note: see issue #51999 <https://github.com/rust-lang/rust/issues/51999> for more information
   = help: add `#![feature(const_panic)]` to the crate attributes to enable
   = note: this error originates in the macro `assert` (in Nightly builds, run with -Z macro-backtrace for more info)

error[E0658]: panicking in constants is unstable
  --> $DIR/assert.rs:10:15
   |
LL | const _: () = assert!(false);
   |               ^^^^^^^^^^^^^^
   |
   = note: see issue #51999 <https://github.com/rust-lang/rust/issues/51999> for more information
   = help: add `#![feature(const_panic)]` to the crate attributes to enable
   = note: this error originates in the macro `assert` (in Nightly builds, run with -Z macro-backtrace for more info)

error: aborting due to 2 previous errors

For more information about this error, try `rustc --explain E0658`.