rust/tests/ui/parser/suggest-static-for-global-var-mut.rs

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

6 lines
90 B
Rust
Raw Normal View History

let mut _data = vec![1,2,3];
//~^ ERROR expected item, found keyword `let`
fn main() {
}