aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/global-path-array.rs
blob: c3aa0249563a62faf22afc0ea74440c77e100104 (plain)
1
2
3
4
5
const X: i32 = 1;

pub fn foo() -> [i32; 1] {
    [::X]
}