rust/tests/ui/parser/pat-lt-bracket-5.rs

6 lines
143 B
Rust
Raw Permalink Normal View History

2015-04-03 02:56:27 +00:00
fn main() {
let v[0] = v[1];
//~^ error: expected a pattern, found an expression
//~| error: cannot find value `v` in this scope
2017-11-23 21:16:19 +00:00
}