summary refs log tree commit diff
path: root/src/test/ui/consts/control-flow/assert.if_match.stderr
blob: 466fb7c3ec5b1a1c28af9bf7ebb6a94bb83954a2 (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:8: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 a macro (in Nightly builds, run with -Z macro-backtrace for more info)

error[E0658]: panicking in constants is unstable
  --> $DIR/assert.rs:12: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 a macro (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`.