blob: b0f862e84181a9c1276773b1953b414874a150eb [file] [log] [blame]
const FOO: *const u32 = {
let x;
&x //~ ERROR E0381
};
fn main() {
let FOO = FOO; // ok, the `const` already emitted an error
}