summaryrefslogtreecommitdiff
path: root/bindgen-tests/tests/headers/issue-769-bad-instantiation-test.hpp
blob: 13c6dd1ce66dc0d7ece4b42bdb075aac93d23e65 (plain)
1
2
3
4
5
6
7
8
9
10
11
// bindgen-flags: --enable-cxx-namespaces --allowlist-type Rooted

template <typename T>
class Rooted {
    T member;
};

class AutoValueVector : Rooted<int> {
    using Alias = int;
    using RootedAlias = Rooted<Alias>;
};