diff options
Diffstat (limited to 'tests/ui/nll/issue-48803.stderr')
-rw-r--r-- | tests/ui/nll/issue-48803.stderr | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/ui/nll/issue-48803.stderr b/tests/ui/nll/issue-48803.stderr new file mode 100644 index 000000000..2f94039c0 --- /dev/null +++ b/tests/ui/nll/issue-48803.stderr @@ -0,0 +1,15 @@ +error[E0506]: cannot assign to `x` because it is borrowed + --> $DIR/issue-48803.rs:10:5 + | +LL | let y = &x; + | -- borrow of `x` occurs here +... +LL | x = "modified"; + | ^^^^^^^^^^^^^^ assignment to borrowed `x` occurs here +LL | +LL | println!("{}", w); // prints "modified" + | - borrow later used here + +error: aborting due to previous error + +For more information about this error, try `rustc --explain E0506`. |