//@ check-pass
const _: bool = false && false;
const _: bool = true && false;
const _: bool = {
let mut x = true && false;
x
};
let x = true && false;
fn main() {}