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