2018-12-18 23:42:42 +00:00
|
|
|
error[E0609]: no field `opts` on type `*const Session`
|
2019-01-21 07:09:56 +00:00
|
|
|
--> $DIR/parenthesized-deref-suggestion.rs:7:30
|
2018-12-18 23:42:42 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | (sess as *const Session).opts;
|
2023-11-09 06:01:10 +00:00
|
|
|
| ^^^^ unknown field
|
2019-10-24 05:20:58 +00:00
|
|
|
|
|
2018-12-18 23:42:42 +00:00
|
|
|
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;
|
2021-06-22 02:07:19 +00:00
|
|
|
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2018-12-18 23:43:00 +00:00
|
|
|
|
|
|
|
error[E0609]: no field `0` on type `[u32; 1]`
|
2019-01-21 07:09:56 +00:00
|
|
|
--> $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]`
|
|
|
|
|
2018-12-18 23:42:42 +00:00
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0609`.
|