]> git.lizzy.rs Git - rust.git/blob - src/test/ui/consts/raw_pointer_promoted.rs
Rollup merge of #98609 - TaKO8Ki:fix-ice-for-associated-constant-generics, r=lcnr
[rust.git] / src / test / ui / consts / raw_pointer_promoted.rs
1 // check-pass
2
3 pub const FOO: &'static *const i32 = &(&0 as _);
4
5 fn main() {}