mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-03 02:40:40 +00:00
9 lines
142 B
Rust
9 lines
142 B
Rust
// Test that `assert` works in consts.
|
|
|
|
const _: () = assert!(true);
|
|
|
|
const _: () = assert!(false);
|
|
//~^ ERROR assertion failed
|
|
|
|
fn main() {}
|