summaryrefslogtreecommitdiffstats
path: root/src/test/ui/did_you_mean/issue-38147-2.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/did_you_mean/issue-38147-2.stderr')
-rw-r--r--src/test/ui/did_you_mean/issue-38147-2.stderr25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/test/ui/did_you_mean/issue-38147-2.stderr b/src/test/ui/did_you_mean/issue-38147-2.stderr
new file mode 100644
index 000000000..7c287a7db
--- /dev/null
+++ b/src/test/ui/did_you_mean/issue-38147-2.stderr
@@ -0,0 +1,25 @@
+error[E0596]: cannot borrow `*self.s` as mutable, as it is behind a `&` reference
+ --> $DIR/issue-38147-2.rs:9:9
+ |
+LL | self.s.push('x');
+ | ^^^^^^^^^^^^^^^^ cannot borrow as mutable
+ |
+help: consider changing this to be mutable
+ |
+LL | s: &'a mut String,
+ | +++
+
+error[E0596]: cannot borrow `*self.longer_name` as mutable, as it is behind a `&` reference
+ --> $DIR/issue-38147-2.rs:12:9
+ |
+LL | self.longer_name.push(13);
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^ cannot borrow as mutable
+ |
+help: consider changing this to be mutable
+ |
+LL | longer_name: & 'a mut Vec<u8>
+ | +++
+
+error: aborting due to 2 previous errors
+
+For more information about this error, try `rustc --explain E0596`.