1// bindgen-flags: -- -std=c++14
2
3template <class T>
4class RefPtr {
5    T use_of_t;
6};
7
8template <typename U>
9class UsesRefPtrWithAliasedTypeParam {
10    using V = U;
11    RefPtr<V> member;
12};
13