diff options
Diffstat (limited to 'tests/ui/borrowck/borrowck-move-subcomponent.stderr')
-rw-r--r-- | tests/ui/borrowck/borrowck-move-subcomponent.stderr | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/ui/borrowck/borrowck-move-subcomponent.stderr b/tests/ui/borrowck/borrowck-move-subcomponent.stderr new file mode 100644 index 000000000..8c9083fcf --- /dev/null +++ b/tests/ui/borrowck/borrowck-move-subcomponent.stderr @@ -0,0 +1,13 @@ +error[E0505]: cannot move out of `a.x` because it is borrowed + --> $DIR/borrowck-move-subcomponent.rs:15:14 + | +LL | let pb = &a; + | -- borrow of `a` occurs here +LL | let S { x: ax } = a; + | ^^ move out of `a.x` occurs here +LL | f(pb); + | -- borrow later used here + +error: aborting due to previous error + +For more information about this error, try `rustc --explain E0505`. |