mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-26 00:34:06 +00:00
67a85925b1
Fixes #132483
8 lines
103 B
Rust
8 lines
103 B
Rust
fn main() {
|
|
let x1 = 0;
|
|
x2 = 1;
|
|
//~^ ERROR E0425
|
|
other_val = 2;
|
|
//~^ ERROR E0425
|
|
}
|