// Attempting construction of points. Now copy construction is OK. #include #include "point1.h" using namespace std; int main(){ Point p1{1, 2}, p2{3}, p3{p1}; // OK: We can use the copy constructor. // use of points here // ... }