1// bindgen-flags: -- -std=c++14
2
3template <typename Elem>
4class List {
5    List<Elem> *next;
6};
7
8template <typename GcThing>
9class PersistentRooted {
10    List<PersistentRooted<GcThing>> root_list;
11};
12