about summary refs log tree commit diff
path: root/tests/ui/stable-addr-of.rs
blob: e330a4853ce0352b322e16f0db66a109bf82d2ae (plain)
1
2
3
4
5
6
7
8
//@ run-pass
// Issue #2040


pub fn main() {
    let foo: isize = 1;
    assert_eq!(&foo as *const isize, &foo as *const isize);
}