mirror of
https://github.com/rust-lang/rust.git
synced 2026-06-01 14:10:03 +03:00
7 lines
213 B
Rust
7 lines
213 B
Rust
// error-pattern: the evaluated program aborted execution: attempted to zero-initialize type `fn()`, which is invalid
|
|
|
|
#[allow(deprecated, invalid_value)]
|
|
fn main() {
|
|
unsafe { std::mem::zeroed::<fn()>() };
|
|
}
|