#include #include "ToyPtr.h" // We want two pointers that point to the same thing! int main(int argc, char** argv) { ToyPtr x(new int(5)); ToyPtr y = x; return EXIT_SUCCESS; }