7 cerr << "allocating ints\n";
9 for (int i=0; i<500000; i++)
11 intPtrs[i] = new int[1];
14 cerr << "allocated ints\n";
16 cerr << "deallocating ints\n";
18 for (i=0; i<500000; i++)
23 cerr << "deallocated ints\n";
25 cerr << "alloacting doubles\n";
27 double* doubles = new double[500000];