summaryrefslogtreecommitdiffstats
path: root/src/test/ui/nll/issue-48803.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/nll/issue-48803.stderr')
-rw-r--r--src/test/ui/nll/issue-48803.stderr15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/test/ui/nll/issue-48803.stderr b/src/test/ui/nll/issue-48803.stderr
new file mode 100644
index 000000000..2f94039c0
--- /dev/null
+++ b/src/test/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`.