rust/tests/ui/suggestions/suggest-let-and-typo-issue-132483.rs

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

8 lines
103 B
Rust
Raw Normal View History

fn main() {
let x1 = 0;
x2 = 1;
//~^ ERROR E0425
other_val = 2;
//~^ ERROR E0425
}