DEBSOURCES
Skip Quicknav
sources / rustc / 1.88.0%2Bdfsg1-1 / tests / ui / consts / issue-78655.rs
12345678
const FOO: *const u32 = { let x; &x //~ ERROR E0381 }; fn main() { let FOO = FOO; // ok, the `const` already emitted an error }