mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-30 22:45:54 +00:00
9 lines
161 B
Rust
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() {}
|