rust/src/test/compile-fail/issue-6977.rs

6 lines
136 B
Rust
Raw Normal View History

// Trying to create a fixed-length vector with a negative size
fn main() {
2013-09-02 08:30:00 -05:00
let _x = [0,..-1]; //~ ERROR found negative integer
}