#[repr(C)] struct Foo { data: *const T } struct Bar { data: *const T } #[repr(C)] struct Tuple { a: *const T, b: *const E, } type Indirection = Tuple; #[no_mangle] pub extern "C" fn root( a: Foo, b: Foo, c: Bar, d: Foo>, e: Bar>, f: Bar>, g: Tuple, f32>, h: Indirection ) { }