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

6 lines
90 B
Rust
Raw Normal View History

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