]> git.proxmox.com Git - rustc.git/blame - src/test/ui/stable-addr-of.rs
New upstream version 1.49.0+dfsg1
[rustc.git] / src / test / ui / stable-addr-of.rs
CommitLineData
416331ca 1// run-pass
223e47cc
LB
2// Issue #2040
3
c34b1796 4
223e47cc 5pub fn main() {
c34b1796
AL
6 let foo: isize = 1;
7 assert_eq!(&foo as *const isize, &foo as *const isize);
223e47cc 8}