1// bindgen-flags: --enable-cxx-namespaces --allowlist-type Rooted 2 3template <typename T> 4class Rooted { 5 T member; 6}; 7 8class AutoValueVector : Rooted<int> { 9 using Alias = int; 10 using RootedAlias = Rooted<Alias>; 11}; 12