blob: fe09c8581df0e41c888ac2188cd0c1bb7b9d1d83 (
plain)
1
2
3
4
5
6
7
8
9
|
error[E0381]: use of possibly-uninitialized variable: `v`
--> $DIR/borrowck-init-plus-equal.rs:3:9
|
LL | v = v + 1;
| ^ use of possibly-uninitialized `v`
error: aborting due to previous error
For more information about this error, try `rustc --explain E0381`.
|