rust/tests/ui/issues/issue-64593.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
202 B
Rust
Raw Normal View History

// check-pass
#![deny(improper_ctypes)]
pub struct Error(std::num::NonZeroU32);
extern "Rust" {
fn foo(dest: &mut [u8]) -> Result<(), Error>;
}
fn main() {
let _ = unsafe { foo(&mut []) };
}