blob: 1e7b7ed3193557a52dbacef980517bf52c90e839 [file] [log] [blame]
#![feature(underscore_const_names)]
const _: bool = false && false;
const _: bool = true && false;
const _: bool = {
let mut x = true && false;
//~^ ERROR new features like let bindings are not permitted
x
};
const _: bool = {
let x = true && false;
//~^ ERROR new features like let bindings are not permitted
x
};
fn main() {}