Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
reachable
/
expr_andand.rs
blob: 40a8c72e5224938436721f9944bf82d0f24444ce [
file
] [
log
] [
blame
] [
edit
]
//@ build-pass (FIXME(62277): could be check-pass?)
#![
allow
(
unused_variables
)]
#![
allow
(
dead_code
)]
#![
deny
(
unreachable_code
)]
fn
foo
()
{
// No error here.
let
x
=
false
&&
(
return
);
println
!(
"I am not dead."
);
}
fn
main
()
{
}