about summary refs log tree commit diff
path: root/tests/ui/consts/issue-17756.rs
blob: 8a419e8046da50bbaeeb7a9f5cad54d4d4fe0d46 (plain)
1
2
3
4
5
6
7
8
//@ run-pass
#![allow(unused_variables)]
#![allow(non_upper_case_globals)]

const count : usize = 2 as usize;
fn main() {
    let larger : [usize; count*2];
}