#include "../src/misc/memory/model.hpp" #include int main(int argc, char **argv) { // Point2D *p = new Point2D(1, 2); // Box> boxed_point1 = Box>(p); // Box> boxed_point2(boxed_point1); Box> boxed_one = Box>(new Point2D(1, 2)); Box> boxed_two = boxed_one; // Box> boxed(new Point2D(1, 2)); return 0; }