cbindgen/tests/rust/monomorph_2.rs

16 lines
196 B
Rust
Raw Normal View History

2017-08-09 05:07:23 -04:00
#[repr(C)]
struct List<T> {
members: *mut T,
count: usize
}
struct A;
struct B;
#[no_mangle]
pub extern "C" fn foo(a: List<A>) { }
2017-08-09 05:07:23 -04:00
#[no_mangle]
pub extern "C" fn bar(b: List<B>) { }