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