29 lines
672 B
Rust
29 lines
672 B
Rust
|
#![allow(dead_code)]
|
||
|
#![warn(clippy::transmute_null_to_fn)]
|
||
|
#![allow(clippy::zero_ptr)]
|
||
|
|
||
|
// Easy to lint because these only span one line.
|
||
|
fn one_liners() {
|
||
|
unsafe {
|
||
|
let _: fn() = std::mem::transmute(0 as *const ());
|
||
|
let _: fn() = std::mem::transmute(std::ptr::null::<()>());
|
||
|
}
|
||
|
}
|
||
|
|
||
|
pub const ZPTR: *const usize = 0 as *const _;
|
||
|
pub const NOT_ZPTR: *const usize = 1 as *const _;
|
||
|
|
||
|
fn transmute_const() {
|
||
|
unsafe {
|
||
|
// Should raise a lint.
|
||
|
let _: fn() = std::mem::transmute(ZPTR);
|
||
|
// Should NOT raise a lint.
|
||
|
let _: fn() = std::mem::transmute(NOT_ZPTR);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
fn main() {
|
||
|
one_liners();
|
||
|
transmute_const();
|
||
|
}
|