about summary refs log tree commit diff
path: root/tests/ui/static/refer-to-other-statics-by-value.rs
blob: 4285b4cc0a99ed6830f47fcfd91b153d016438db (plain)
1
2
3
4
5
6
7
8
//@ run-pass

static A: usize = 42;
static B: usize = A;

fn main() {
    assert_eq!(B, 42);
}