blob: 036a1e3768843c982e66238218f4c7077bf5072d [file] [log] [blame]
// build-pass (FIXME(62277): could be check-pass?)
#![allow(dead_code)]
#![allow(unused_variables)]
const A: [u32; 1] = [0];
fn test() {
let range = A[1]..;
}
fn main() { }