blob: 13b656e1568ea332963f5043cd6452568e88124c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// 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;
};
|