rust/tests/ui/editions/edition-raw-pointer-method-2018.stderr

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

18 lines
558 B
Plaintext
Raw Normal View History

error[E0282]: type annotations needed for `*const _`
--> $DIR/edition-raw-pointer-method-2018.rs:8:9
2018-08-08 12:28:26 +00:00
|
LL | let y = &x as *const _;
| ^
LL |
2018-08-08 12:28:26 +00:00
LL | let _ = y.is_null();
| ------- cannot call a method on a raw pointer with an unknown pointee type
|
help: consider giving `y` an explicit type, where the placeholders `_` are specified
|
LL | let y: *const _ = &x as *const _;
| ++++++++++
2018-08-08 12:28:26 +00:00
error: aborting due to 1 previous error
2018-08-08 12:28:26 +00:00
For more information about this error, try `rustc --explain E0282`.