Sign in
third-party-mirror
/
cbindgen
/
1f32778f219c6898ee4e83e77a24211565ea817d
/
.
/
cbindgen-0.27.0
/
tests
/
rust
/
typedef.rs
blob: bf7ceb845e695d22368335597a3937091693a3c4 [
file
] [
log
] [
blame
]
#[
repr
(
C
)]
struct
Foo
<
T
,
U
>
{
x
:
T
,
y
:
U
,
}
type
IntFoo
<
T
>
=
Foo
<
i32
,
T
>;
#[
no_mangle
]
pub
extern
"C"
fn
root
(
a
:
IntFoo
<
i32
>)
{
}