rust/src/test/ui/editions/edition-raw-pointer-method-2015.stderr

18 lines
611 B
Plaintext
Raw Normal View History

2018-08-08 12:28:26 +00:00
error: type annotations needed
2019-04-22 16:35:37 +00:00
--> $DIR/edition-raw-pointer-method-2015.rs:9:15
2018-08-08 12:28:26 +00:00
|
LL | let _ = y.is_null();
| ^^^^^^^
|
2020-01-22 23:57:38 +00:00
note: the lint level is defined here
2019-04-22 16:35:37 +00:00
--> $DIR/edition-raw-pointer-method-2015.rs:5:8
2018-08-08 12:28:26 +00:00
|
LL | #[deny(warnings)]
| ^^^^^^^^
= note: `#[deny(tyvar_behind_raw_pointer)]` implied by `#[deny(warnings)]`
= warning: this is valid in the current edition (Rust 2015) but is not accepted in the Rust 2018 edition!
2018-08-08 12:28:26 +00:00
= note: for more information, see issue #46906 <https://github.com/rust-lang/rust/issues/46906>
error: aborting due to previous error