]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/deprecation/try-macro-suggestion.stderr
New upstream version 1.63.0+dfsg1
[rustc.git] / src / test / ui / deprecation / try-macro-suggestion.stderr
index c7dde7eeac33edc3f059db4262b503d63c908902..63c8a6eef7f296bb6e4f8e998e314215eec89187 100644 (file)
@@ -21,7 +21,7 @@ help: you can use the `?` operator instead
    |
 LL -     Ok(try!(Ok(())))
 LL +     Ok(Ok(())?)
-   | 
+   |
 help: alternatively, you can still access the deprecated `try!()` macro using the "raw identifier" syntax
    |
 LL |     Ok(r#try!(Ok(())))