blob: 2794c19299231bb191e1d0ff018875d956fa937b [file] [log] [blame]
// bindgen-flags: --enable-cxx-namespaces --whitelist-type nsCSSValue --opaque-type 'nsRefPtrHashtable' -- -std=c++14
template <class PtrType> class nsRefPtrHashtable {
typedef PtrType *UserDataType;
};
struct a {
nsRefPtrHashtable<int> b;
};
class nsCSSValue {
a c;
};