rust/tests/ui/const-ptr/pointer-address-stability.rs
2025-07-05 01:54:04 +05:00

12 lines
301 B
Rust

//! Check that taking the address of a stack variable with `&`
//! yields a stable and comparable pointer.
//!
//! Regression test for <https://github.com/rust-lang/rust/issues/2040>.
//@ run-pass
pub fn main() {
let foo: isize = 1;
assert_eq!(&foo as *const isize, &foo as *const isize);
}