help wanted
Metriche repository
- Star
- (4472 stelle)
- Metriche merge PR
- (Merge medio 8m) (3 PR mergiate in 30 g)
Descrizione
We should support structs that have type parameters and translate them to an ABI-compatible class template in C++.
#[cxx::bridge]
mod ffi {
struct Generic<T> {
wow: T,
}
extern "C" {
fn f(g: Generic<String>);
}
}