12 lines
140 B
Rust
12 lines
140 B
Rust
#[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>)
|
|
{ }
|