| 1576 | using container_type = fl::list<int>; |
| 1577 | static container_type create(tracking_memory_resource& mr) { return container_type(&mr); } |
| 1578 | static void insert(container_type& c, int v) { c.push_back(v); } |
| 1579 | static void remove_one(container_type& c) { c.pop_back(); } |
| 1580 | }; |
| 1581 |