rust/src/test/ui/consts/const-prop-ice2.rs
Oliver Scherer 1206549d1b Fix tidy
2018-11-09 10:11:20 +01:00

6 lines
151 B
Rust

fn main() {
enum Enum { One=1 }
let xs=[0;1 as usize];
println!("{}", xs[Enum::One as usize]); //~ ERROR the len is 1 but the index is 1
}