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