Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// run-pass
const ERROR_CONST: bool = true;
fn get() -> bool {
false || ERROR_CONST
}
pub fn main() {
assert_eq!(get(), true);