mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
12 lines
205 B
Rust
12 lines
205 B
Rust
//@ check-pass
|
|
#![deny(improper_ctypes)]
|
|
|
|
pub struct Error(std::num::NonZero<u32>);
|
|
|
|
extern "Rust" {
|
|
fn foo(dest: &mut [u8]) -> Result<(), Error>;
|
|
}
|
|
|
|
fn main() {
|
|
let _ = unsafe { foo(&mut []) };
|
|
}
|