summary refs log tree commit diff
path: root/src/test/run-pass/repeat-expr-in-static.rs
blob: 928509e1bd652a8284ceb2eabb111308a628d6c3 (plain)
1
2
3
4
5
6
static FOO: [isize; 4] = [32; 4];
static BAR: [isize; 4] = [32, 32, 32, 32];

pub fn main() {
    assert_eq!(FOO, BAR);
}