8 lines
103 B
Rust
8 lines
103 B
Rust
|
fn main() {
|
||
|
let x1 = 0;
|
||
|
x2 = 1;
|
||
|
//~^ ERROR E0425
|
||
|
other_val = 2;
|
||
|
//~^ ERROR E0425
|
||
|
}
|