#include <cstdlib>

#include "Point_2011.h"

int main(int argc, char** argv) {
  Point x(1, 2);
  Point y(3, 4);

  x.Clone(y);

  // Point z(x);  // compiler error, copy constructor is disabled.
  // x = y;       // compiler error, assignment operator is disabled.

  return EXIT_SUCCESS;
}