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