rust/tests/ui/suggestions/suggest-let-and-typo-issue-132483.rs
2024-11-02 14:40:37 -07:00

8 lines
103 B
Rust

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