We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 09fd3f8 commit 340d7eeCopy full SHA for 340d7ee
tests/ui/suggestions/parenthesized-deref-suggestion.stderr
@@ -4,7 +4,7 @@ error[E0609]: no field `opts` on type `*const Session`
4
LL | (sess as *const Session).opts;
5
| ^^^^ unknown field
6
|
7
-help: `the value` is a raw pointer; try dereferencing it
+help: the value is a raw pointer; try dereferencing it
8
9
LL - (sess as *const Session).opts;
10
LL + (*sess as *const Session).opts;
0 commit comments