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