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
|
|
|
|
|
2024-07-04 00:24:10 +00:00
|
|
|
help: the value is a raw pointer; try dereferencing it
|
2018-12-18 23:42:42 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | (*(sess as *const Session)).opts;
|
2024-07-04 00:24:10 +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;
|
2024-07-04 00:24:10 +00:00
|
|
|
| ^ unknown field
|
|
|
|
|
|
|
|
|
help: instead of using tuple indexing, use array indexing
|
|
|
|
|
|
|
|
|
LL | (x as [u32; 1])[0];
|
|
|
|
| ~ +
|
2018-12-18 23:43:00 +00:00
|
|
|
|
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`.
|