]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/parenthesized-deref-suggestion.stderr
Rollup merge of #82259 - osa1:issue82156, r=petrochenkov
[rust.git] / src / test / ui / parenthesized-deref-suggestion.stderr
index a16510055f5482804bde176e2c127d633202056d..24be32ae9eba679aa052e5acd88bf6b4f425c159 100644 (file)
@@ -3,6 +3,7 @@ error[E0609]: no field `opts` on type `*const Session`
    |
 LL |     (sess as *const Session).opts;
    |                              ^^^^
+   |
 help: `(sess as *const Session)` is a raw pointer; try dereferencing it
    |
 LL |     (*(sess as *const Session)).opts;