]> git.lizzy.rs Git - rust.git/blob - src/test/ui/consts/issue-17458.rs
Add 'compiler/rustc_codegen_gcc/' from commit 'afae271d5d3719eeb92c18bc004bb6d1965a5f3f'
[rust.git] / src / test / ui / consts / issue-17458.rs
1 static X: usize = unsafe { core::ptr::null::<usize>() as usize };
2 //~^ ERROR: pointers cannot be cast to integers during const eval
3
4 fn main() {
5     assert_eq!(X, 0);
6 }