rust/tests/ui/parser/issue-100197-mut-let.rs

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

7 lines
96 B
Rust
Raw Normal View History

// run-rustfix
fn main() {
mut let _x = 123;
//~^ ERROR invalid variable declaration
}