f28bbb2f95
Issue #236
12 lines
190 B
Rust
12 lines
190 B
Rust
// -*- rust -*-
|
|
|
|
// error-pattern:bounds check
|
|
fn main() {
|
|
let v: [int] = [10];
|
|
let x: int = 0;
|
|
assert (v[x] == 10);
|
|
// Bounds-check failure.
|
|
|
|
assert (v[x + 2] == 20);
|
|
}
|