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