Sign in
◑
Theme
rust
/
rust
/
8a7e1d75b2e2f4a2e89420130bca8d8d97f9074e
/
.
/
tests
/
ui
/
consts
/
control-flow
/
assert.rs
blob: 2c372075137433d7bd494588eb7b4db869818086 [
file
]
// Test that `assert` works in consts.
const
_
:
()
=
assert
!(
true
);
const
_
:
()
=
assert
!(
false
);
//~^ ERROR assertion failed
fn
main
()
{}