mirror of
https://github.com/rust-lang/rust.git
synced 2026-01-20 08:00:37 +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() {}
|