]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/error-codes/E0506.stderr
New upstream version 1.63.0+dfsg1
[rustc.git] / src / test / ui / error-codes / E0506.stderr
index 17f883f84b8a2ad6855c40c468b692a746e212dc..d70406b750afcf6cb04f1e3f7945b9e6ef9e68c0 100644 (file)
@@ -5,7 +5,7 @@ LL |     let fancy_ref = &fancy_num;
    |                     ---------- borrow of `fancy_num` occurs here
 LL |     fancy_num = FancyNum { num: 6 };
    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ assignment to borrowed `fancy_num` occurs here
-LL | 
+LL |
 LL |     println!("Num: {}, Ref: {}", fancy_num.num, fancy_ref.num);
    |                                                 ------------- borrow later used here