Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
278 B
Rust
Raw Normal View History

#![crate_type = "lib"]
#[repr(C)]
pub struct TestStruct<T> {
pub x: u8,
2020-09-01 17:12:52 -04:00
pub y: T,
}
2020-09-01 17:12:52 -04:00
pub extern "C" fn foo<T>(ts: TestStruct<T>) -> T {
ts.y
}
2016-12-05 16:31:05 -08:00
#[link(name = "test", kind = "static")]
2020-09-01 17:12:52 -04:00
extern "C" {
pub fn call(c: extern "C" fn(TestStruct<i32>) -> i32) -> i32;
}