Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
const FOO: *const u32 = {
let x;
&x //~ ERROR E0381
};
fn main() {
let FOO = FOO;
//~^ ERROR could not evaluate constant pattern
}