blob: 1be89a6628ac50dc79666f0c026cdd0af372f0d3 [file] [log] [blame]
// bindgen-flags: --enable-cxx-namespaces --whitelist-type Rooted
template <typename T>
class Rooted {
T member;
};
class AutoValueVector : Rooted<int> {
using Alias = int;
using RootedAlias = Rooted<Alias>;
};