mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-05 19:58:32 +00:00
18 lines
409 B
Rust
18 lines
409 B
Rust
![]() |
pub static global: isize = 3;
|
||
|
|
||
|
static global0: isize = 4;
|
||
|
|
||
|
pub static global2: &'static isize = &global0;
|
||
|
|
||
|
pub fn verify_same(a: &'static isize) {
|
||
|
let a = a as *const isize as usize;
|
||
|
let b = &global as *const isize as usize;
|
||
|
assert_eq!(a, b);
|
||
|
}
|
||
|
|
||
|
pub fn verify_same2(a: &'static isize) {
|
||
|
let a = a as *const isize as usize;
|
||
|
let b = global2 as *const isize as usize;
|
||
|
assert_eq!(a, b);
|
||
|
}
|