summary refs log tree commit diff
path: root/src/test/ui/borrowck/borrowck-init-plus-equal.stderr
blob: f49c06c0c8659a1b6ae8937d28f272150bb55ec8 (plain)
1
2
3
4
5
6
7
8
9
error[E0381]: use of possibly uninitialized variable: `v`
  --> $DIR/borrowck-init-plus-equal.rs:13:9
   |
LL |     v = v + 1; //~ ERROR use of possibly uninitialized variable: `v`
   |         ^ use of possibly uninitialized `v`

error: aborting due to previous error

For more information about this error, try `rustc --explain E0381`.