mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
069957a8ad
* Late Lint pass, catches: * One liner: 0 -> null -> transmute * One liner: std:null() -> transmute * Const (which resolves to null) -> transmute * UI Test case for Lint * Updated test for issue 3849, because now the lint that code generated is in Clippy. * Expanded `const.rs` miri-based Constant Folding code, to cover raw pointers
22 lines
797 B
Text
22 lines
797 B
Text
error: transmuting a known null pointer into a reference.
|
|
--> $DIR/transmuting_null.rs:10:23
|
|
|
|
|
LL | let _: &u64 = std::mem::transmute(0 as *const u64);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= note: `-D clippy::transmuting-null` implied by `-D warnings`
|
|
|
|
error: transmuting a known null pointer into a reference.
|
|
--> $DIR/transmuting_null.rs:11:23
|
|
|
|
|
LL | let _: &u64 = std::mem::transmute(std::ptr::null::<u64>());
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: transmuting a known null pointer into a reference.
|
|
--> $DIR/transmuting_null.rs:21:23
|
|
|
|
|
LL | let _: &u64 = std::mem::transmute(ZPTR);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to 3 previous errors
|
|
|