blob: 13b656e1568ea332963f5043cd6452568e88124c [file] [log] [blame]
// bindgen-flags: -- -std=c++14
template <class T>
class RefPtr {
T use_of_t;
};
template <typename U>
class UsesRefPtrWithAliasedTypeParam {
using V = U;
RefPtr<V> member;
};