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
205 B
Rust
Raw Normal View History

//@ check-pass
#![deny(improper_ctypes)]
2024-02-22 13:59:52 +00:00
pub struct Error(std::num::NonZero<u32>);
extern "Rust" {
fn foo(dest: &mut [u8]) -> Result<(), Error>;
}
fn main() {
let _ = unsafe { foo(&mut []) };
}