Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
consts
/
control-flow
/
assert.rs
blob: 9d17f65b93cab803f0ddac3ab0ca9a57bc91d9ce [
file
] [
log
] [
blame
] [
edit
]
// Test that `assert` works in consts.
const
_
:
()
=
assert
!(
true
);
const
_
:
()
=
assert
!(
false
);
//~^ ERROR evaluation of constant value failed
fn
main
()
{}