about summary refs log tree commit diff
path: root/tests/ui/consts/const-deref.rs
blob: 21a5eb3b64dc08eb9d7a746d7d7355377196d1c6 (plain)
1
2
3
4
5
6
7
8
//@ run-pass

const C: &'static isize = &1000;
static D: isize = *C;

pub fn main() {
    assert_eq!(D, 1000);
}