]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/try-macro-suggestion.stderr
Pin panic-in-drop=abort test to old pass manager
[rust.git] / src / test / ui / try-macro-suggestion.stderr
index 9d833ef5ed9fb50cba6d1a66a7c8144017b973d7..c7dde7eeac33edc3f059db4262b503d63c908902 100644 (file)
@@ -8,7 +8,7 @@ LL |     Ok(try!());
 help: you can still access the deprecated `try!()` macro using the "raw identifier" syntax
    |
 LL |     Ok(r#try!());
-   |        ^^
+   |        ++
 
 error: use of deprecated `try` macro
   --> $DIR/try-macro-suggestion.rs:4:8
@@ -19,12 +19,13 @@ LL |     Ok(try!(Ok(())))
    = note: in the 2018 edition `try` is a reserved keyword, and the `try!()` macro is deprecated
 help: you can use the `?` operator instead
    |
-LL |     Ok(Ok(())?)
-   |       --     ^
+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(())))
-   |        ^^
+   |        ++
 
 error: aborting due to 2 previous errors