mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
12 lines
174 B
Rust
12 lines
174 B
Rust
//@ build-pass
|
|
#![allow(dead_code)]
|
|
#![allow(unused_variables)]
|
|
#![allow(unconditional_panic)]
|
|
const A: [u32; 1] = [0];
|
|
|
|
fn test() {
|
|
let range = A[1]..;
|
|
}
|
|
|
|
fn main() { }
|