]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/closures/2229_closure_analysis/diagnostics/mut_ref.stderr
New upstream version 1.63.0+dfsg1
[rustc.git] / src / test / ui / closures / 2229_closure_analysis / diagnostics / mut_ref.stderr
index dbf8523a3bae111512411a19667815596495fa69..481d7e58529eebe089afd91fe0460ba870b05600 100644 (file)
@@ -3,7 +3,7 @@ error[E0596]: cannot borrow `**ref_mref_x` as mutable, as it is behind a `&` ref
    |
 LL |     let ref_mref_x = &mref_x;
    |                      ------- help: consider changing this to be a mutable reference: `&mut mref_x`
-LL | 
+LL |
 LL |     let c = || {
    |             ^^ `ref_mref_x` is a `&` reference, so the data it refers to cannot be borrowed as mutable
 LL |