mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-15 09:27:25 +00:00
28 lines
672 B
Rust
28 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();
|
|
}
|