Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
issues
/
issue-30891.rs
blob: 25b7165d0116735a2a81705459c0bd7c375da314 [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
const
ERROR_CONST
:
bool
=
true
;
fn
get
()
->
bool
{
false
||
ERROR_CONST
}
pub
fn
main
()
{
assert_eq
!(
get
(),
true
);
}