1// bindgen-flags: --with-derive-hash --with-derive-partialeq --with-derive-eq -- -std=c++14 2 3namespace JS { 4namespace detail { 5 template <typename T> 6 using Wrapped = T; 7} 8 9template <typename T> 10struct Rooted { 11 detail::Wrapped<T> ptr; 12}; 13} 14