summary refs log tree commit diff
path: root/src/test/compile-fail/issue-6977.rs
blob: bfaa148ea6ce7db4c6bd39c6134ac367b969af19 (plain)
1
2
3
4
5
6
7
//xfail-test

// Trying to create a fixed-length vector with a negative size

fn main() {
      let _x = [0,..-1];
}