blob: 30f55e0bd640c6e93d74ed5b64c4010661983894 [file] [log] [blame]
// run-pass
const ERROR_CONST: bool = true;
fn get() -> bool {
false || ERROR_CONST
}
pub fn main() {
assert_eq!(get(), true);
}