mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-24 21:53:23 +00:00
6 lines
115 B
Rust
6 lines
115 B
Rust
pub fn foo(x: &u32) -> u32 {
|
|
/* Safety:
|
|
* This is totally ok.
|
|
*/
|
|
unsafe { *(x as *const u32) }
|
|
}
|