Sign in
◑
Theme
rust
/
rust
/
8662be8340e5e2bc06fe16b7df0a7d02ebdf5e64
/
.
/
src
/
tools
/
rustfmt
/
tests
/
source
/
issue_4528.rs
blob: 85f6d8c0387c72d3d5f6ef4bb7601eb22472e6f6 [
file
]
#![
allow
(
clippy
::
no_effect
)]
extern
"C"
{
// N.B., mutability can be easily incorrect in FFI calls -- as
// in C, the default is mutable pointers.
fn
ffi
(
c
:
*
mut
u8
);
fn
int_ffi
(
c
:
*
mut
i32
);
}