6 lines
146 B
Rust
6 lines
146 B
Rust
#![allow(invalid_value)]
|
|
|
|
fn main() {
|
|
let _b: fn() = unsafe { std::mem::transmute(0usize) }; //~ ERROR: encountered a null function pointer
|
|
}
|