1// bindgen-flags: --enable-cxx-namespaces --allowlist-type nsCSSValue --opaque-type 'nsRefPtrHashtable' -- -std=c++14
2
3template <class PtrType> class nsRefPtrHashtable {
4  typedef PtrType *UserDataType;
5};
6struct a {
7  nsRefPtrHashtable<int> b;
8};
9class nsCSSValue {
10  a c;
11};
12