blob: 2e09c2745b27286297ef7a719a8c8e54ff398ec8 [file] [log] [blame]
// bindgen-flags: -- -std=c++14
template <typename Elem>
class List {
List<Elem> *next;
};
template <typename GcThing>
class PersistentRooted {
List<PersistentRooted<GcThing>> root_list;
};