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);
}