rust/tests/ui/suggestions/parenthesized-deref-suggestion.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
794 B
Plaintext
Raw Normal View History

error[E0609]: no field `opts` on type `*const Session`
--> $DIR/parenthesized-deref-suggestion.rs:7:30
|
2019-03-09 12:03:44 +00:00
LL | (sess as *const Session).opts;
2023-11-09 06:01:10 +00:00
| ^^^^ unknown field
|
help: `(sess as *const Session)` is a raw pointer; try dereferencing it
|
2019-03-09 12:03:44 +00:00
LL | (*(sess as *const Session)).opts;
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2018-12-18 23:43:00 +00:00
error[E0609]: no field `0` on type `[u32; 1]`
--> $DIR/parenthesized-deref-suggestion.rs:10:21
2018-12-18 23:43:00 +00:00
|
2019-03-09 12:03:44 +00:00
LL | (x as [u32; 1]).0;
2018-12-18 23:43:00 +00:00
| ----------------^
2023-11-09 06:01:10 +00:00
| | |
| | unknown field
2018-12-18 23:43:00 +00:00
| help: instead of using tuple indexing, use array indexing: `(x as [u32; 1])[0]`
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0609`.