blob: 8e07a8a0fdda7fbe87d591ddbee02b284e99e721 [file] [log] [blame]
// bindgen-flags: --blocklist-type RefPtr --raw-line "#[derive(Clone, Copy, Debug)] pub struct RefPtr<T>(T);" --allowlist-type "HasRefPtr" -- -std=c++14
template <class> class RefPtr {};
template <typename T>
class HasRefPtr {
typedef T TypedefOfT;
RefPtr<TypedefOfT> refptr_member;
};