2022-02-05 20:51:33 -08:00
|
|
|
const FOO: *const u32 = {
|
2020-11-04 22:23:43 +05:30
|
|
|
let x;
|
2022-06-21 11:57:45 -07:00
|
|
|
&x //~ ERROR E0381
|
2020-11-04 22:23:43 +05:30
|
|
|
};
|
|
|
|
|
|
|
|
|
|
fn main() {
|
2024-11-20 02:37:56 +00:00
|
|
|
let FOO = FOO; // ok, the `const` already emitted an error
|
2020-11-04 22:23:43 +05:30
|
|
|
}
|