#include <cstdlib>

#include "ToyPtr.h"

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