rust/tests/ui/consts/control-flow/assert.rs
2023-01-11 09:32:08 +00:00

9 lines
161 B
Rust

// Test that `assert` works in consts.
const _: () = assert!(true);
const _: () = assert!(false);
//~^ ERROR evaluation of constant value failed
fn main() {}