blob: cc47e58fcdc15a0c8180141acc60f612b0a67167 [file] [log] [blame]
// compile-pass
#![allow(dead_code)]
#![allow(unused_variables)]
const A: [u32; 1] = [0];
fn test() {
let range = A[1]..;
}
fn main() { }