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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

4 lines
99 B
Rust
Raw Normal View History

2015-04-03 02:56:27 +00:00
fn main() {
let v[0] = v[1]; //~ ERROR expected one of `:`, `;`, `=`, `@`, or `|`, found `[`
2017-11-23 21:16:19 +00:00
}