]> git.lizzy.rs Git - rust.git/blob - tests/ui/consts/raw_pointer_promoted.rs
Rollup merge of #106962 - compiler-errors:use-sugg-span, r=oli-obk
[rust.git] / tests / ui / consts / raw_pointer_promoted.rs
1 // check-pass
2
3 pub const FOO: &'static *const i32 = &(&0 as _);
4
5 fn main() {}