2018-08-08 07:28:26 -05:00
|
|
|
error[E0609]: no field `f` on type `*const Rec`
|
|
|
|
--> $DIR/unsafe-fn-autoderef.rs:29:14
|
|
|
|
|
|
|
|
|
LL | return p.f; //~ ERROR no field `f` on type `*const Rec`
|
2018-12-18 17:42:42 -06:00
|
|
|
| --^
|
|
|
|
| |
|
|
|
|
| help: `p` is a raw pointer; try dereferencing it: `(*p).f`
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0609`.
|