blob: 53f8ce1fa836a6a42de58ed24842191c9c596ea5 [file] [log] [blame]
/**
* <div rustbindgen opaque></div>
*/
struct OtherOpaque {
int c;
};
/**
* <div rustbindgen opaque></div>
*/
template <typename T>
struct Opaque {
T whatever;
};
struct WithOpaquePtr {
Opaque<int>* whatever;
Opaque<float> other;
OtherOpaque t;
};