rust/src/test/ui/parser/let-binop.stderr
2020-07-02 15:18:33 +09:00

21 lines
515 B
Plaintext

error: can't reassign to an uninitialized variable
--> $DIR/let-binop.rs:4:15
|
LL | let a: i8 *= 1;
| ^^ help: initialize the variable
error: can't reassign to an uninitialized variable
--> $DIR/let-binop.rs:6:11
|
LL | let b += 1;
| ^^ help: initialize the variable
error: can't reassign to an uninitialized variable
--> $DIR/let-binop.rs:8:11
|
LL | let c *= 1;
| ^^ help: initialize the variable
error: aborting due to 3 previous errors