struct S {
int num;
}Would allocating an instance on the heap using: S* s = new S;use the GC, or do we have to call destroy() or delete on s ourselves?
struct S {
int num;
}Would allocating an instance on the heap using: S* s = new S;use the GC, or do we have to call destroy() or delete on s ourselves?