mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-18 03:25:55 +00:00
7 lines
98 B
Rust
7 lines
98 B
Rust
|
// Issue #2040
|
||
|
|
||
|
fn main() {
|
||
|
let foo = 1;
|
||
|
assert ptr::addr_of(foo) == ptr::addr_of(foo);
|
||
|
}
|