Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
//@ 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 []) };