diff options
Diffstat (limited to '')
-rw-r--r-- | src/test/ui/nll/issue-54556-wrap-it-up.stderr | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/test/ui/nll/issue-54556-wrap-it-up.stderr b/src/test/ui/nll/issue-54556-wrap-it-up.stderr new file mode 100644 index 000000000..9f27fac15 --- /dev/null +++ b/src/test/ui/nll/issue-54556-wrap-it-up.stderr @@ -0,0 +1,14 @@ +error[E0506]: cannot assign to `x` because it is borrowed + --> $DIR/issue-54556-wrap-it-up.rs:27:5 + | +LL | let wrap = Wrap { p: &mut x }; + | ------ borrow of `x` occurs here +... +LL | x = 1; + | ^^^^^ assignment to borrowed `x` occurs here +LL | } + | - borrow might be used here, when `foo` is dropped and runs the destructor for type `Foo<'_>` + +error: aborting due to previous error + +For more information about this error, try `rustc --explain E0506`. |