Sign in
rust
/
rust-lang
/
rust
/
refs/heads/try-perf
/
.
/
tests
/
run-make
/
export
/
write-interface-nonexistent-dir
/
libr.rs
blob: c6aeabf3228f03cd11be0f62bc705a90afd91455 [
file
] [
edit
]
#![
feature
(
export_stable
)]
#![
crate_type
=
"sdylib"
]
pub
mod
m
{
#[
repr
(
C
)]
pub
struct
S
{
pub
x
:
i32
,
}
pub
extern
"C"
fn
foo1
(
x
:
S
)
->
i32
{
x
.
x
}
}