true iff ptr is handled by D's garbage collector (GC).
int s; int* sp = &s; assert(!sp.isGCPointer); int* ip = new int; assert(ip.isGCPointer);
See Implementation