#include <memory>
struct point { int x, z; };
int main() { std::make_unique<point>(1, 2); }
