blob: 646d9f40fd5d76f527211587716df1d10e8a53dd [file] [log] [blame]
// bindgen-flags: -- -std=c++14
namespace JS {
namespace detail {
template <typename T>
using Wrapped = T;
}
template <typename T>
struct Rooted {
detail::Wrapped<T> ptr;
};
}