rust/tests/compile-fail/intrinsics/zero_fn_ptr.rs
2020-12-10 19:53:45 +01:00

7 lines
171 B
Rust

// error-pattern: attempted to zero-initialize type `fn()`, which is invalid
#[allow(deprecated, invalid_value)]
fn main() {
unsafe { std::mem::zeroed::<fn()>() };
}