Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
consts
/
const_unsafe_unreachable_ub.rs
blob: b418fea617ceaec29dd407105371ffa2233a4a4b [
file
] [
log
] [
blame
]
// error-pattern: evaluation of constant value failed
const
unsafe
fn
foo
(
x
:
bool
)
->
bool
{
match
x
{
true
=>
true
,
false
=>
std
::
hint
::
unreachable_unchecked
(),
}
}
const
BAR
:
bool
=
unsafe
{
foo
(
false
)
};
fn
main
()
{
assert_eq
!(
BAR
,
true
);
}